Created
June 28, 2024 00:03
-
-
Save injust90/e4d029e30dcaed5c6129993b6c6270d1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define IN 1 | |
#define OUT 0 | |
// count lines, words, and characters in input | |
#include <stdio.h> | |
int main() | |
{ | |
int state, c, counter; | |
state = IN; | |
counter = 0; | |
while ((c = getchar()) != EOF) | |
{ | |
if ( c == ' ' || c == '\n' || c == '\t') | |
{ | |
state = OUT; | |
++counter; | |
} | |
if (state == IN) | |
{ | |
putchar(c); | |
counter = 0; | |
} | |
else if (state == OUT) | |
{ | |
state = IN; | |
if (counter == 1) | |
{ | |
printf("\n"); | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment