C++ doesn't have an assignment statement, or a procedure call statement.
It defines assignment as an operator in an expression, with side
effects, and has an expression statement. It is expected that the
top level operator in an expression statement have side
effects—that it either modify state, like an assignment operator,
or it calls a function. But the language doesn't require it, and
expression statements with no side effects whatever are perfectly legal.
A good compiler will output a warning in such cases, since it's almost
certainly a programmer error (and you can usually shut up the warning by
explicitly casting the results to void, if for some reason you want
such a statement—the assert macro often does this).
-x;negates x and discards result. same as egx+1;– Anycorn Mar 15 '12 at 9:02-Wall, eh? Perhaps there's a larger lesson to be learned here... – Cody Gray Mar 15 '12 at 10:06g++ -Wall -Wextra -Werror <file>.cpp– Loki Astari Mar 15 '12 at 10:09