main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / aru
x=55
y=92
ie; x= 35 + 20
ie; x=55;
then y= 56 +36
ie; y=99
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
If I have a char * variable pointing to the name of a function ..
#include
Where is volatile variable stored?
Explain what is output redirection?
What is the use of volatile?
Is it better to use a macro or a function?
What are the different types of pointers used in c language?
What is difference between array and structure in c?
What is difference between scanf and gets?
Explain what is the advantage of a random access file?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
Do array subscripts always start with zero?
Do pointers take up memory?
writ a program to compare using strcmp VIVA and viva with its output.
What is structure packing in c?