gcc_drone/hello.c

7 lines
99 B
C
Raw Normal View History

2021-08-04 11:57:03 +08:00
#include<stdio.h>
int main(int argc, char* argv[])
{
printf("hello, %s\n", argv[1]);
return 0;
}