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=10, y=15;
x = x++;
y = ++y;
printf("%d %d\n",x,y);
}

A. 10 15 B. 11 15
C. 11 16 D. 10 16

Answer: Option C
Explaination:

 


No Explanation



Discussion

Your Comments Goes here...
NameDiscussion