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 / udai
512
| Is This Answer Correct ? | 8 Yes | 6 No |
Post New Answer View All Answers
What are the types of type specifiers?
What is getch () for?
When should I declare a function?
What are the various types of control structures in programming?
how to write optimum code to divide a 50 digit number with a 25 digit number??
What are the back slash character constants or escape sequence charactersavailable in c?
Why do we need volatile in c?
What does %2f mean in c?
How will you find a duplicate number in a array without negating the nos ?
What is #define in c?
Write a code on reverse string and its complexity.
What is #define?
What is an endless loop?
What are the types of c language?
Can we use visual studio for c?