2 /* exercise 1-12: print the first word on each line */
5 print up to first word, once a space is read stop for that line
6 begin reading again on next line
8 possibly putchar after all input is read
14 while((c
= getchar()) != EOF
) {
16 /* if(c == ' ' && oword == 0) { */
23 } else if(c
== '\n') {