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 all different types of pointers in c?
What are the features of the c language?
what is reason of your company position's in india no. 1.
What are the functions to open and close the file in c language?
How can I implement a delay, or time a users response, with sub-second resolution?
What is the use of ?: Operator?
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
Difference between malloc() and calloc() function?
What does #pragma once mean?
Which header file is used for clrscr?
Why does notstrcat(string, "!");Work?
What type is sizeof?
What is the purpose of scanf() and printf() functions?
Difference between linking and loading?
What is output redirection?