void main()
{
int x=25,y=32;
clrscr();
x=x++ + y++;
y=++x + ++y;
printf("%d%d",x,y);
}
Answer Posted / surendra singh bisht
x=57
y=91
| Is This Answer Correct ? | 2 Yes | 7 No |
Post New Answer View All Answers
What is a sequential access file?
Why is c platform dependent?
Explain bitwise shift operators?
Explain what is the difference between functions getch() and getche()?
What do you know about the use of bit field?
What is difference between %d and %i in c?
What is the explanation for prototype function in c?
ATM machine and railway reservation class/object diagram
Is it acceptable to declare/define a variable in a c header?
What are the types of i/o functions?
What are global variables and explain how do you declare them?
In a header file whether functions are declared or defined?
Why n++ execute faster than n+1 ?
What is far pointer in c?
What is the difference between malloc() and calloc() function in c language?