gcc_drone/hello.c

7 lines
100 B
C
Raw Permalink Normal View History

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