main()
{
int x=5,y=10,z=0;
x=x++ + y++;
y=y++ + ++x;
z=x++ + ++y;
printf("%d%d%d\n",x,y,z);
}
Answer Posted / vaishnavi
x=16,y=28,z=34
| Is This Answer Correct ? | 3 Yes | 10 No |
Post New Answer View All Answers
Is the exit() function same as the return statement? Explain.
Where is c used?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
What is the meaning of ?
Explain the difference between ++u and u++?
What is the difference between printf and scanf in c?
What is pass by reference in c?
pierrot's divisor program using c or c++ code
What is graph in c?
What is the usage of the pointer in c?
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
What are predefined functions in c?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What are the different types of constants?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above