21. #define square(x) x*x
main()
{
int i;
i = 64/square(4);
printf("%d",i);
}
Answer Posted / rocker1198
Its 64/(4*4)
ans is 4
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
How variables are declared in c?
Is c dynamically typed?
Explain b+ tree?
How many types of sorting are there in c?
what are the facialities provided by you after the selection of the student.
What is the right type to use for boolean values in c?
What is difference between structure and union in c?
What is variable declaration and definition in c?
How can I access an I o board directly?
Why isnt any of this standardized in c?
What is an identifier?
code for find determinent of amatrix
Why we use break in c?
what is the function of pragma directive in c?
What are the advantages of Macro over function?