Create hello.c

This commit is contained in:
aircwt 2020-02-11 09:16:04 +08:00 committed by GitHub
parent 3480e134a2
commit 47cb967fdc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

6
hello.c Normal file
View File

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