gcc_drone/hello.c
2021-08-04 12:37:22 +08:00

7 lines
100 B
C

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