Answer Posted / vrushali
This boils down to (10 +10 * 10 + 10)
so answer is 120 ... but if the same macro was rewritten as
#define d (10 + 10)
then d * d = (10 + 10 ) * (10 + 10)
= 20 * 20
= 400....
Pure macro concept....
| Is This Answer Correct ? | 15 Yes | 13 No |
Post New Answer View All Answers
What is New modifiers?
Why c language?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
What is %g in c?
Do you have any idea how to compare array with pointer in c?
Define circular linked list.
Explain what is the difference between far and near ?
How many types of functions are there in c?
What does %c mean in c?
What are near, far and huge pointers?
Which is better pointer or array?
What is a floating point in c?
What is the purpose of 'register' keyword?
Explain what header files do I need in order to define the standard library functions I use?
What is the meaning of 2d in c?