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
Can we use any name in place of argv and argc as command line arguments?
How we can insert comments in a c program?
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
What are derived data types in c?
string reverse using recursion
What is bubble sort in c?
what is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)
What is uint8 in c?
What is c mainly used for?
How do you define structure?
How do you determine the length of a string value that was stored in a variable?
Explain what is the benefit of using #define to declare a constant?
What are header files and explain what are its uses in c programming?
what are bit fields? What is the use of bit fields in a structure declaration?