Skip to content

Instantly share code, notes, and snippets.

@Learath2
Last active August 29, 2015 14:04
Show Gist options
  • Save Learath2/99fdaf64ebff755cd54a to your computer and use it in GitHub Desktop.
Save Learath2/99fdaf64ebff755cd54a to your computer and use it in GitHub Desktop.
//K&R2 Exercise 1-12 "1 word per line"
#include <stdio.h>
main()
{
int i;
for(i = 0; (i = getchar()) != EOF;){
if(i != ' ')
putchar(i);
else
putchar('\n');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment