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 are the 4 data types?
What does do in c?
What is data structure in c language?
Is c still used?
Explain how can I read and write comma-delimited text?
Is file a keyword in c?
Write a program to print factorial of given number using recursion?
What language is windows 1.0 written?
simple program of graphics and their output display
What is static memory allocation?
What is use of pointer?
Is it possible to pass an entire structure to functions?
Why & is used in c?
How can I insert or delete a line (or record) in the middle of a file?
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?