Skip to content

Instantly share code, notes, and snippets.

@AliGx97
Last active March 18, 2020 18:43
Show Gist options
  • Save AliGx97/f32903fba3bfc54f205e7351ef643b10 to your computer and use it in GitHub Desktop.
Save AliGx97/f32903fba3bfc54f205e7351ef643b10 to your computer and use it in GitHub Desktop.
Simple Hello World progfram in C language.
#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