3 * Write a program to copy its input to its output, replacing each string of one or more blanks by a
13 // Read all input until EOF.
15 while ((c
= getchar()) != EOF
) {
17 * Upon reaching a space, print said space, and then keep looping
18 * until we get back to non-space characters.
22 while ((c
= getchar()) == ' ' && c
!= EOF
)