更新 'hello.c'

This commit is contained in:
jiacai_wang 2022-03-29 23:24:31 +08:00
parent c1b0c012ca
commit 636df3a650

View File

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