#C coding style
22-Jul-89 11:08:48
Sb: #58206-#C coding style
Fm: David Hamkins 76515,1650
To: George Brickner 70040,104
Geo,
I'm not Ben but let me offer you my advice. Whenever you use braces, place
each one on it's own line. This emphasizes the block nature of the statements
enclosed by the braces, and makes spotting the missing "}" a heck of a lot
easier. Thus, write
do
{
statements ;
}
while( condition ) ;
Doesn't it seem much easier to spot the "}" this way rather than
do
{
statments ;
} while( condition ) ;
Dave @OTG