Skip to content

Instantly share code, notes, and snippets.

@roberts-sandbox
Last active December 19, 2015 11:59
Show Gist options
  • Save roberts-sandbox/5952143 to your computer and use it in GitHub Desktop.
Save roberts-sandbox/5952143 to your computer and use it in GitHub Desktop.
Hello World in C

Hello World

Hello World in C.

#include<stdio.h>
int main(int argc, char* argv[]) {
printf("Hello World!\n");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment