Add 'hello.c'

This commit is contained in:
latenightz 2021-04-29 15:19:22 +00:00
parent f2bb89223d
commit 90dacbbdc3
1 changed files with 7 additions and 0 deletions

7
hello.c Normal file
View File

@ -0,0 +1,7 @@
// Hello world in C
#include <stdio.h>
int main() {
printf("Hello, World!\n");
}