> I put null loop-bodies on a separate line like in the following > example. > > while (eatup() != '\n') > ; Putting the semi-colon on a separate line does help make it clear that the body of the loop is intentionally null, but what I like even better is: while( eatup() != '\n' ) continue; Comments? Gary Samuelson