21. #define square(x) x*x
main()
{
int i;
i = 64/square(4);
printf("%d",i);
}

Answers were Sorted based on User's Feedback



21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }..

Answer / ashok kumar

i=64/4*4;
i=16*4;
i=64


The final result is : 64

Is This Answer Correct ?    18 Yes 2 No

21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }..

Answer / rocker1198

Its 64/(4*4)
ans is 4

Is This Answer Correct ?    1 Yes 5 No

21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }..

Answer / mathuri

4

Is This Answer Correct ?    2 Yes 9 No

Post New Answer

More C Interview Questions

Juxtapose the use of override with new. What is shadowing?

1 Answers  


What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }

4 Answers   CTS, Oracle,


What is the value of h?

1 Answers  


How to explain the final year project as a fresher please answer with sample project

1 Answers  


Are there namespaces in c?

1 Answers  


which is the best site or book for learning C...and i need the content for C..how to get the good programming skills....? can plz suggest me....

2 Answers  


write a program that print itself even if the source file is deleted?

2 Answers  


Why we not create function inside function.

1 Answers  


What are header files and what are its uses in C programming?

1 Answers  


When should you not use a type cast?

1 Answers  


what is a NULL Pointer? Whether it is same as an uninitialized pointer?

1 Answers   TISL,


Explain what is a const pointer?

1 Answers  


Categories