21. #define square(x) x*x
main()
{
int i;
i = 64/square(4);
printf("%d",i);
}
Answer Posted / ashok kumar
i=64/4*4;
i=16*4;
i=64
The final result is : 64
| Is This Answer Correct ? | 18 Yes | 2 No |
Post New Answer View All Answers
What is openmp in c?
What does c mean?
Can we increase size of array in c?
Lists the benefits of c programming language?
What is "Duff's Device"?
Is main is a keyword in c?
Can we declare function inside main?
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
Explain that why C is procedural?
What is graph in c?
What is #pragma statements?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
What is the mean of function?
Explain what is the stack?
Where are the auto variables stored?