main()
{
int i = 10;
printf(" %d %d %d \n", ++i, i++, ++i);
}

Answer Posted / pooja alagarsamy

when compiled as a program, it gives this output:

13 11 13

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the importance of c in your views?

582


What is substring in c?

627


Does sprintf put null character?

584


What is getch c?

841


Explain output of printf("Hello World"-'A'+'B'); ?

967






What is character set?

675


a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list

618


What is the difference between array and linked list in c?

588


What is a wrapper function in c?

571


What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

1947


What is the g value paradox?

630


What does typeof return in c?

631


Write a program of prime number using recursion.

607


What are the different types of data structures in c?

587


What are the valid places to have keyword “break”?

642