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