21. #define square(x) x*x
main()
{
int i;
i = 64/square(4);
printf("%d",i);
}
Answers were Sorted based on User's Feedback
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 |
Juxtapose the use of override with new. What is shadowing?
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(); }
What is the value of h?
How to explain the final year project as a fresher please answer with sample project
Are there namespaces in c?
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....
write a program that print itself even if the source file is deleted?
Why we not create function inside function.
What are header files and what are its uses in C programming?
When should you not use a type cast?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
Explain what is a const pointer?