Skip to content

Instantly share code, notes, and snippets.

@kyrathasoft
Created August 16, 2023 01:07
Show Gist options
  • Save kyrathasoft/729931174c5918e4cff93770daf24959 to your computer and use it in GitHub Desktop.
Save kyrathasoft/729931174c5918e4cff93770daf24959 to your computer and use it in GitHub Desktop.
Hello world in C
#include <stdio.h>
int main(void)
{
printf("");
printf("");
printf("Hello World!\n");
printf("press a key to end program...");
getchar();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment