Add hello-world.c

This commit is contained in:
BBaoVanC 2020-10-20 10:48:35 -05:00
parent 4103f48fae
commit 164108aa1b
No known key found for this signature in database
GPG Key ID: 6D74C8B0E7D791C2
1 changed files with 7 additions and 0 deletions

7
hello-world.c Normal file
View File

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