Skip to content

Instantly share code, notes, and snippets.

@tsnow
Created December 27, 2013 16:02
Show Gist options
  • Save tsnow/8149000 to your computer and use it in GitHub Desktop.
Save tsnow/8149000 to your computer and use it in GitHub Desktop.
learn c the hard way
#include <stdio.h>
int main(int argc, char *argv[])
{
char *in;
in = gets(");
puts(in);
puts(argv[0]);
puts("Hello world.");
puts("Your face looks like a butt.");
puts("Rock me Amadeus.");
puts("You heart cookies.");
puts("What up son?");
puts("Boop.");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment