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 |
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
What is the difference between declaring a variable by constant keyword and #define ing that variable?
why java is called as a purely oops language.
How to swap 3 numbers without using 4th variable?
without using arithmatic operator convert an intger variable x into x+1
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }
Input any no. and print all the the numbers that comes before it like this for e.g input = 4 0 01 012 0123 01234 plz answer it 2day
Define function ?Explain about arguments?
2 Answers Geometric Software, Infosys,
What are local and global variables?
What is structure packing ?