Skip to content

Instantly share code, notes, and snippets.

@alice-gh
Forked from roberts-sandbox/README.md
Last active September 30, 2015 18:05
Show Gist options
  • Save alice-gh/8a1cc2bf37ab42df708a to your computer and use it in GitHub Desktop.
Save alice-gh/8a1cc2bf37ab42df708a 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