Skip to content

Instantly share code, notes, and snippets.

@dtuominen
Created February 14, 2013 11:24
Show Gist options
  • Save dtuominen/4952205 to your computer and use it in GitHub Desktop.
Save dtuominen/4952205 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main()
{
char c;
while ((c=getchar())!=EOF){
putchar(c);
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment