What is the \"hanging else\" problem? (Is that the right name?)
Following a C++ coding standard (forgot which one) I always use brackets (block) with control structu
Ambiguous else.
Some info here: http://theory.stanford.edu/~amitp/yapps/yapps-doc/node3.html
But the classic example is:
if a then if b then x = 1; else y = 1;
vs.