what is output?
main()
{
#define SQR(x) x++ * ++x
int i = 3;
printf("
%d %d
",SQR(i),i * SQR(i));
}
a)9 27
b)35 60
c)20 60
d)15 175
Answer Posted / aspirant
c
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Are bit fields portable?
while initialization of array why we use a[][2] why not a[2][]...?
about c language
How can type-insensitive macros be created?
What is logical error?
how to capitalise first letter of each word in a given string?
What is local and global variable in c?
Explain what is page thrashing?
Explain the array representation of a binary tree in C.
What is hashing in c language?
What are the types of data files?
What is malloc return c?
Which driver is a pure java driver
What is the difference between Printf(..) and sprint(...) ?
In C programming, how do you insert quote characters (‘ and “) into the output screen?