+ 5
what is the output of this and explain how it works??
int main() { int a=-5; int k=(a++,++a); printf("%d",k); return 0; }
3 Respuestas
0
You can understand this only by practicing. It's confusing for all begginers. First read about pre-increment and post-increment then try making some practice code. Just observe the outputs carefully.