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 / anil patil
b) 35 60
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is dynamic memory allocation?
What is an lvalue in c?
What is a void pointer? When is a void pointer used?
show how link list can be used to repersent the following polynomial i) 5x+2
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
Explain continue keyword in c
Explain what is a const pointer?
If null and 0 are equivalent as null pointer constants, which should I use?
When a c file is executed there are many files that are automatically opened what are they files?
What is methods in c?
What is pointer to pointer in c?
Which is more efficient, a switch statement or an if else chain?
Write a program to find the biggest number of three numbers in c?
What is an lvalue?
Is c dynamically typed?