<p>what's your favorite piece of load-bearing whitespace in C++? nested templates are the classic historical example, but i'm quite partial to this one:</p><pre><code>int main() {<br> int a = 0xE + 1; // compiles<br> int b = 0xE+1; // doesn't<br>}<br></code></pre>