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 / harichandana
b
| Is This Answer Correct ? | 5 Yes | 3 No |
Post New Answer View All Answers
What is difference between array and pointer in c?
What is volatile variable in c?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
What type of function is main ()?
Who developed c language?
Differentiate abs() function from fabs() function.
How do you use a pointer to a function?
Which is best linux os?
What is the purpose of 'register' keyword in c language?
Why is not a pointer null after calling free?
Is null always equal to 0(zero)?
What is c++ used for today?
Can i use “int” data type to store the value 32768? Why?
Write a program to print “hello world” without using semicolon?
What is difference between array and structure in c?