+ 1
Explain how(-5,-4)
Second line of the code
8 Respuestas
0
int a=-5;
int k=(a++,++a);
Printf("%d",k);
0
Help me wizards
0
The answer is -3
0
Thanks
0
The answer is -3.
a++ would leave it as -5, but while it gets to ++a it would turn into -4 and then it would turn into -3 because of ++a.