main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / ledia
The program results in an undefined behaviour. You're wrong
if you have a certain answer. Learn more on the wikipedia
http://en.wikipedia.org/wiki/Sequence_point
| Is This Answer Correct ? | 5 Yes | 4 No |
Post New Answer View All Answers
write a progrmm in c language take user interface generate table using for loop?
#include
Why #include is used in c language?
What is string concatenation in c?
What is the purpose of & in scanf?
What is build process in c?
How can I manipulate individual bits?
Why calloc is better than malloc?
What are linked lists in c?
Why is c called c?
explain what is fifo?
Explain what are linked list?
Can a variable be both const and volatile?
How to set file pointer to beginning c?
What is union and structure in c?