First page Back Continue Last page Graphics
a neat idea
note on page 213
When you do an if statement, put the constant first and it will cause a mistake in == vs = to be found by the compiler
if ( 3 == xvar ) cout << xvar << endl;
when you error,
if ( 12 == yvar) cout << yvar << endl;
compiler will catch it!