Skip to content

Instantly share code, notes, and snippets.

Created June 7, 2013 04:42
Show Gist options
  • Save anonymous/5727112 to your computer and use it in GitHub Desktop.
Save anonymous/5727112 to your computer and use it in GitHub Desktop.
"Hello, world!" example.
#include <stdio.h>
int main(void)
{
printf("Hello, world!\n");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment