Skip to content

Instantly share code, notes, and snippets.

@injust90
Created June 28, 2024 00:30
Show Gist options
  • Save injust90/36c4bf4d99e21e2993a7129f0731514a to your computer and use it in GitHub Desktop.
Save injust90/36c4bf4d99e21e2993a7129f0731514a to your computer and use it in GitHub Desktop.
#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