Skip to content

Instantly share code, notes, and snippets.

@rlapz
Last active May 31, 2021 22:40
Show Gist options
  • Save rlapz/dff71e488a4c8b47d51fbd6631628daf to your computer and use it in GitHub Desktop.
Save rlapz/dff71e488a4c8b47d51fbd6631628daf to your computer and use it in GitHub Desktop.
Hello world example in C
#include <stdio.h>
int
main(void)
{
puts("Hello World!");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment