Skip to content

Instantly share code, notes, and snippets.

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