main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / sanjev kumar sasode
56 93 (ANSI)
57 94 (Turbo C)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can we change the value of #define in c?
What is the difference between functions getch() and getche()?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
How can you access memory located at a certain address?
What is the use of function in c?
What is difference between array and structure in c?
What is the size of enum in c?
What will be the outcome of the following conditional statement if the value of variable s is 10?
What is the use of volatile?
What are the advantages of union?
What is a null pointer in c?
Explain what are header files and explain what are its uses in c programming?
Write a code to generate a series where the next element is the sum of last k terms.
Difference between Function to pointer and pointer to function
What would happen to X in this expression: X += 15; (assuming the value of X is 5)