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
Why do we use static in c?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
Can we change the value of #define in c?
difference between Low, Middle, High Level languages in c ?
What do you mean by dynamic memory allocation in c?
What is structure in c definition?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
Is it better to use a macro or a function?
How does selection sort work in c?
How can you read a directory in a C program?
What is pass by reference in c?
How do you define structure?
Why should I use standard library functions instead of writing my own?
Is fortran still used in 2018?
What is call by reference in functions?