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 / kundan
Can anyone please explain it ????
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the difference between %d and %i?
How can I handle floating-point exceptions gracefully?
Write a program to generate random numbers in c?
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
What is meant by inheritance?
How was c created?
Explain how can you avoid including a header more than once?
What is array within structure?
How can I trap or ignore keyboard interrupts like control-c?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
Distinguish between actual and formal arguments.
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
Why header file is used in c?
What is LINKED LIST? How can you access the last element in a linked list?
What is the argument of a function in c?