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 / bala prasad
it prints
512
| Is This Answer Correct ? | 17 Yes | 10 No |
Post New Answer View All Answers
will u please send me the placement papers to my mail???????????????????
How are portions of a program disabled in demo versions?
Explain how can you check to see whether a symbol is defined?
what are the facialities provided by you after the selection of the student.
what is the diffrenet bettwen HTTP and internet protocol
How many levels of pointers have?
What are external variables in c?
What are global variables and how do you declare them?
What is structure in c explain with example?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
How can I insert or delete a line (or record) in the middle of a file?
How variables are declared in c?
How can I write functions that take a variable number of arguments?
What is the explanation for the dangling pointer in c?
What is a pointer in c?