This repository has been archived on 2020-12-05. You can view files and clone it, but cannot push or open issues or pull requests.
Files
stupid-coding-files/charcount.c
2020-12-07 09:12:18 +02:00

17 lines
303 B
C

#include <stdio.h>
main (){
int c = 0;
while ((c = getchar()) != EOF)
{
if(c==' ')
printf("blank ");
if(c=='\t')
printf("tab ");
if(c=='\n')
printf("newline\n");
else
{
printf("%d",c);
}
}
}