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 the purpose of main( ) in c language?
What are the general description for loop statement and available loop types in c?
Explain high-order bytes.
How do you determine a file’s attributes?
What are shell structures used for?
Explain what are preprocessor directives?
Explain what are its uses in c programming?
Explain c preprocessor?
What are the usage of pointer in c?
What does calloc stand for?
What is meant by gets in c?
I have a varargs function which accepts a float parameter?
What does char * * argv mean in c?
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
List the difference between a 'copy constructor' and a 'assignment operator' in C?