Skip to content

Instantly share code, notes, and snippets.

@szczys

szczys/hello.c Secret

Created June 19, 2018 16:09
Show Gist options
  • Save szczys/3af48cdb165094945badc92de4c9d897 to your computer and use it in GitHub Desktop.
Save szczys/3af48cdb165094945badc92de4c9d897 to your computer and use it in GitHub Desktop.
World's simplest Hello World c file
#include <stdio.h>
int main()
{
printf("Hello World");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment