21. #define square(x) x*x
main()
{
int i;
i = 64/square(4);
printf("%d",i);
}
Answer Posted / mathuri
4
| Is This Answer Correct ? | 2 Yes | 9 No |
Post New Answer View All Answers
What is the difference between #include
What are the string functions? List some string functions available in c.
What is main return c?
What is p in text message?
How do c compilers work?
What is merge sort in c?
What library is sizeof in c?
What is structure padding and packing in c?
What is optimization in c?
Differentiate between Macro and ordinary definition.
how to make a scientific calculater ?
what do you mean by enumeration constant?
What is const volatile variable in c?
How can I sort more data than will fit in memory?
What is hashing in c?