What would be the output of the following?
main() { int y,x=5; y=++x - ++x; printf("%d%d",x,y); }
Reveal answer
Fill a bubble to check yourself
What would be the output of the following?
main() { int y,x=5; y=++x - ++x; printf("%d%d",x,y); }