/* "Bell Labs industrial programming style" */ i = 0 ; while ( i < 10 ) { printf("The variable i = %d\n", i) ; i++ ; } /* "Student style" */ i = 0 ; while ( i < 10 ) { printf("The variable i = %d\n", i) ; i++ ; } /* Some more acceptable styles */ i = 0 ; while ( i < 10 ) { printf("The variable i = %d\n", i) ; i++ ; } i = 0 ; while ( i < 10 ) { printf("The variable i = %d\n", i) ; i++ ; } /* A bad style */ i = 0 ; while ( i < 10 ) { printf("The variable i = %d\n", i) ; i++ ; }