main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / sujith vargheese
Hi The correct Answer is X=55 AND y=94
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
How can I manipulate strings of multibyte characters?
How are strings stored in c?
Can you pass an entire structure to functions?
Explain how are portions of a program disabled in demo versions?
What is quick sort in c?
write a program in c language to print your bio-data on the screen by using functions.
How does free() know explain how much memory to release?
What is pointer to pointer in c?
Why is c not oop?
What is keyword in c?
Write a program to find factorial of a number using recursive function.
Can we initialize extern variable in c?
What is the difference between printf and scanf )?
When the macros gets expanded?
how can f be used for both float and double arguments in printf? Are not they different types?