Skip to content

Instantly share code, notes, and snippets.

@cgmb
Created September 23, 2015 06:52
Show Gist options
  • Save cgmb/d99319e284340661a6d5 to your computer and use it in GitHub Desktop.
Save cgmb/d99319e284340661a6d5 to your computer and use it in GitHub Desktop.
Hello World in C
#include <stdio.h>
int main() {
printf("Hello World!\n");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment