init hello.

This commit is contained in:
Jiacai Wang 2021-08-04 11:57:03 +08:00
commit 9deb826f70

6
hello.c Normal file
View File

@ -0,0 +1,6 @@
#include<stdio.h>
int main(int argc, char* argv[])
{
printf("hello, %s\n", argv[1]);
return 0;
}