what will be the output of this program?
#include<stdio.h>
#define cube(x) x*x*x
void main()
{
int i,j=5;
i=cube(j+3);
printf("i=%d",i);
}
Answer Posted / srikanth karnati
please explain this program.
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
How many keywords are there in c?
Can a variable be both const and volatile?
hello freinds next week my interview in reliance,nybody has an idea about it intervew questions..so tell
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
How is pointer initialized in c?
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
What are different types of pointers?
What should malloc() do?
explain what is fifo?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
Why do we use null pointer?
What does the c in ctime mean?
What is hungarian notation? Is it worthwhile?
What is typedf?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.