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 |
What is the difference between call by value and call by reference in c?
what is array?
What are the preprocessor categories?
write a programe returns the number of times the character appears in the string
Write a function in c to find the area of a triangle whose length of three sides is given.
Predict the output or error(s) for the following: 25. main() { printf("%p",main); }
What are macros in C?
What is string function in c?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a
can we write a program in c for printf and scanf without using header file stdio.h
How do you print an address?