From 9deb826f70bc039f36638b2506a83d58337ffcba Mon Sep 17 00:00:00 2001 From: Jiacai Wang Date: Wed, 4 Aug 2021 11:57:03 +0800 Subject: [PATCH] init hello. --- hello.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hello.c diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..1b70430 --- /dev/null +++ b/hello.c @@ -0,0 +1,6 @@ +#include +int main(int argc, char* argv[]) +{ + printf("hello, %s\n", argv[1]); + return 0; +}