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
What is static and volatile in c?
How macro execution is faster than function ?
Why is a semicolon (;) put at the end of every program statement?
Is python a c language?
Why do we need functions in c?
What is pass by reference in c?
is it possible to create your own header files?
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
In which layer of the network datastructure format change is done
What does typeof return in c?
How do you redirect a standard stream?
Compare interpreters and compilers.
What are the advantages of using Unions?
what will be the output for the following main() { printf("hi" "hello"); }
What is a pointer variable in c language?