Skip to content

Instantly share code, notes, and snippets.

@tristanpendergrass
Created May 28, 2018 18:04
Show Gist options
  • Save tristanpendergrass/4c68ddeb14b7d41e6b1f7fdd9c1db092 to your computer and use it in GitHub Desktop.
Save tristanpendergrass/4c68ddeb14b7d41e6b1f7fdd9c1db092 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main() {
int c;
while ((c = getchar()) != EOF) {
putchar(c);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment