void main()
{
int x=25,y=32;
clrscr();
x=x++ + y++;
y=++x + ++y;
printf("%d%d",x,y);
}

Answer Posted / myfriend_shankar

ans is 59 93
because
void main()
{
1.x=x++ + y++; 25+32 (bcoz of x=x++ so) 26+32=58
2.y=++x + ++y; 59+34=93(after this x=59)
(becoz of x=x++ the last value 59 be the x value)

Is This Answer Correct ?    13 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

The file stdio.h, what does it contain?

667


What is define directive?

640


What does char * * argv mean in c?

624


What is a substring in c?

588


Explain how are portions of a program disabled in demo versions?

655






What is binary tree in c?

622


What is #include stdlib h?

616


How is a pointer variable declared?

594


Why cant I open a file by its explicit path?

593


Tell me about low level programming languages.

644


What does 3 periods mean in texting?

600


Explain what are the different file extensions involved when programming in c?

633


Differentiate abs() function from fabs() function.

596


write a program for the normal snake games find in most of the mobiles.

1786


How can I use a preprocessorif expression to ?

601