gcc_drone/hello.c
2021-08-04 12:40:44 +08:00

7 lines
99 B
C

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