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
Can you define which header file to include at compile time?
Explain how can I open a file so that other programs can update it at the same time?
What does int main () mean?
Multiply an Integer Number by 2 Without Using Multiplication Operator
What is wrong with this initialization?
In C programming, what command or code can be used to determine if a number of odd or even?
What is the use of function overloading in C?
What is #define used for in c?
Are enumerations really portable?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
Compare and contrast compilers from interpreters.
Write a program to check whether a number is prime or not using c?
Is null valid for pointers to functions?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
How can I determine whether a machines byte order is big-endian or little-endian?