Created
June 28, 2024 00:30
-
-
Save injust90/36c4bf4d99e21e2993a7129f0731514a 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 | |
int main() { | |
int state = IN; | |
int c, counter = 0; | |
while ((c = getchar()) != EOF) { | |
if (c == ' ' || c == '\n' || c == '\t') { | |
state = OUT; | |
++counter; | |
} | |
if (state == IN) { | |
putchar(c); | |
counter = 0; | |
} else { | |
state = IN; | |
if (counter == 1) | |
printf("\n"); | |
} | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment