C - Operators - Discussion

You Are Here :: Home > C > Operators - Discussion

 



Q.

What will be printed as the result of the operation below:

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

A. 5974 B. 5794
C. 5479 D. 5497

Answer: Option B
Explaination:

 


No Explanation



Discussion

Your Comments Goes here...
NameDiscussion