learningc/chapters/1/exercises/13.c

14 lines
199 B
C

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