My friend sent me a joke:
Q. What\'s the difference between C and C++? A. Nothing, because: (C - C++ == 0)
Q. What\'s the difference between C and C++?
A. Nothing, because: (C - C++ == 0)
I tried to change
Because c++ - c becomes (c - c-incremented-by-one), which is -1 and ++c - c becomes (c-incremented-by-one - c-incremented-by-one) which is 0.
c++ - c
(c - c-incremented-by-one)
++c - c
(c-incremented-by-one - c-incremented-by-one)