Search Results

27
votes

Hidden Features of C++?

The array operator is associative. A[8] is a synonym for *(A + 8). Since addition is associative, that can be rewritten as *(8 + A), which is a synonym for..... 8[A] You didn't say …