learningc/chapters/1/exercises/12.c

14 lines
198 B
C

#include <stdio.h>
int main() {
int c;
while ((c = getchar()) != EOF) {
if (c == ' ' || c == '\n' || c == '\t') {
printf("\n");
} else {
putchar(c);
}
}
return 0;
}