Skip to content

Instantly share code, notes, and snippets.

@zayfod
Last active December 20, 2015 11:59
Show Gist options
  • Save zayfod/6127159 to your computer and use it in GitHub Desktop.
Save zayfod/6127159 to your computer and use it in GitHub Desktop.
C "hello world" program. #c #hello
#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