Skip to content

Instantly share code, notes, and snippets.

@kilip
Created October 11, 2012 16:15
Show Gist options
  • Save kilip/3873532 to your computer and use it in GitHub Desktop.
Save kilip/3873532 to your computer and use it in GitHub Desktop.
C Hello World
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
printf("hello, world\n");
return EXIT_SUCCESS;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment