21. #define square(x) x*x
main()
{
int i;
i = 64/square(4);
printf("%d",i);
}
Answers were Sorted based on User's Feedback
Answer / ashok kumar
i=64/4*4;
i=16*4;
i=64
The final result is : 64
| Is This Answer Correct ? | 18 Yes | 2 No |
I came across some code that puts a (void) cast before each call to printf. Why?
What is modifier & how many types of modifiers available in c?
How can I read a binary data file properly?
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
Not all reserved words are written in lowercase. TRUE or FALSE?
how many argument we can pas in in a function
What are integer variable, floating-point variable and character variable?
What is pointers in c?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
Is c programming hard?
What is 'makefile' in C langauage? How it be useful? How to write a makefile to a particular program?
What is void main ()?