Project-Scylla/KNR Redux/ex1-8.c

26 lines
322 B
C
Raw Permalink Normal View History

#include <stdio.h>
#include <stdlib.h>
int main(){
int c = 0;
int whitespace = 0;
while((c = getchar()) != EOF)
switch(c){
case '\n':
++ whitespace;
break;
case '\t':
++whitespace;
break;
case ' ':
++whitespace;
break;
break;
}
printf("%d %c", whitespace, '\n');
exit(0);
}