>>3
And to explain WHY it's incorrect (and demonstrate my quoting skillz)
> /* Warning: bogus C code! */
if (some condition)
if (another condition)
do_something(fancy);
else
this_sucks(badluck);
Either the indentation is wrong, or the program is buggy, because an "else" always applies to the nearest "if", unless you use braces.
incorrect.
The indentation is irrevelant in C.
The program is not buggy.