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 / lalit
b) 35,60
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is a buffer in c?
What is the method to save data in stack data structure type?
Is r written in c?
What is wrong with this code?
What are types of preprocessor in c?
What is pointers in c with example?
How pointer is different from array?
What is 'bus error'?
What is default value of global variable in c?
How will you find a duplicate number in a array without negating the nos ?
What is volatile keyword in c?
What are categories used for in c?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
What is difference between union and structure in c?
How many bytes is a struct in c?