Skip to content

Instantly share code, notes, and snippets.

@SBaof
Last active May 15, 2017 07:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SBaof/1f8fe08526bcf36cebe439572727d16a to your computer and use it in GitHub Desktop.
Save SBaof/1f8fe08526bcf36cebe439572727d16a to your computer and use it in GitHub Desktop.
Say hello world in C
#include <stdio.h>
int main(int argc, char** argv)
{
printf("hello world!");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment