main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / valli
x=57
y=94
| Is This Answer Correct ? | 29 Yes | 16 No |
Post New Answer View All Answers
int far *near * p; means
Can a variable be both constant and volatile?
What are all different types of pointers in c?
What is modifier & how many types of modifiers available in c?
What are the 4 data types?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is the difference between typedef and #define?
What are dangling pointers? How are dangling pointers different from memory leaks?
When should a type cast not be used?
What is enumerated data type in c?
what is the difference between 123 and 0123 in c?
Tell us bitwise shift operators?
Differentiate between ordinary variable and pointer in c.
What are the different types of pointers used in c language?
What kind of structure is a house?