While reading through a C++ book, I came across an expression which was not explained properly (or maybe I just didn’t understand the explanation). This is the expression:
c = a+++b;
Which of these does it mean?
c = a + (++b); // 1
c = (a++) + b; // 2
Thanks.
Its interpreted as:
Its following the Maximal munch rule.