gcc_drone/hello.c
2022-03-29 23:24:31 +08:00

7 lines
100 B
C

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