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
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
Tell us two differences between new () and malloc ()?
Why c is called procedure oriented language?
How many levels of indirection in pointers can you have in a single declaration?
Write a program to print factorial of given number using recursion?
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
What is the difference between exit() and _exit() function?
What are global variables?
What is the difference between typedef struct and struct?
What are preprocessor directives in c?
What do you mean by Recursion Function?
What are different types of variables in c?
With the help of using classes, write a program to add two numbers.
How many types of sorting are there in c?
The difference between printf and fprintf is ?