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 #line in c?
What does s c mean on snapchat?
What kind of structure is a house?
Is c++ based on c?
what does static variable mean?
What will be your course of action for a push operation?
What are variables and it what way is it different from constants?
What is the use of static variable in c?
What are runtime error?
What is modifier & how many types of modifiers available in c?
What are the valid places to have keyword “break”?
Why is #define used?
What is int main () in c?
What is an expression?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?