., ->, ::, operator[] and
operator() operators MUST NOT be padded.
This is wrong:
x+=10*++x;
y=a?b:c;
| This is correct:
x += 10 * ++x;
y = a ? b : c;
|
0 instead of NULL for NULL pointers.
int
foo (int n)
{
return bar () + n;
}
std::cout << "Hello!" << std::endl
<< "World!\n" << std::endl;