Hi folks,
I have started to learn in C language before 1 weak, I encounter an example about count lines, words and characters .. this is it
#include <stdio.h>
#define IN 1 /* inside a word */
#define OUT 0 /* outside a word */
/* count lines, words, and characters in input */
main()...