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


Please Help Members By Posting Answers For Below Questions

Should a function contain a return statement if it does not return a value?

601


What is operator promotion?

635


What is an lvalue?

638


Can a variable be both const and volatile?

678


Why we use int main and void main?

542






Difference between goto, long jmp() and setjmp()?

712


about c language

1608


What is dangling pointer in c?

628


Explain bit masking in c?

642


Can we access array using pointer in c language?

650


What is advantage of pointer in c?

700


How can I make sure that my program is the only one accessing a file?

686


What is use of null pointer in c?

574


If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402

3252


Why is it usually a bad idea to use gets()? Suggest a workaround.

913