あれ何で中途半端な位置で区切る人多いの?
例えば

if ( 〜 ) {
printf( "〜" );
} else {
printf( "〜");
}

より
if ( 〜 ) {printf( "〜" );}

else{printf( "〜");}

の方が分かりやすくね?