mahendra kumar gupta


{ City } bhopal
< Country > india
* Profession * student
User No # 59100
Total Questions Posted # 0
Total Answers Posted # 1

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 4
Users Marked my Answers as Wrong # 3
Questions / { mahendra kumar gupta }
Questions Answers Category Views Company eMail




Answers / { mahendra kumar gupta }

Question { Ramco, 15976 }

main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}

what is the output?


Answer

x=57
y=94

Is This Answer Correct ?    4 Yes 3 No