According to syntax postfix increment returns copy of unmodified variable (C++ == C), while prefix increment returns incremented variable (++C == C + 1).
According to syntax postfix increment returns copy of unmodified variable (C++ == C), while prefix increment returns incremented variable (++C == C + 1).
But it’s still C
I think ++C is going full ahead to D
Agreed. C is a char, and
++'C'
results in'D'
.