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
Is sizeof a keyword in c?
What is #line in c?
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
Can 'this' pointer by used in the constructor?
What is the difference between far and near in c?
Explain what is output redirection?
What is the difference between %d and %i?
What is linear search?
How do you sort filenames in a directory?
How are 16- and 32-bit numbers stored?
Can we compile a program without main() function?
What is quick sort in c?
What is static memory allocation?
What is array in c with example?
Explain how are 16- and 32-bit numbers stored?