mirror of
https://github.com/JamesonHuang/OpenWrt_Luci_Lua.git
synced 2024-11-23 22:00:11 +00:00
19 lines
551 B
C
19 lines
551 B
C
/*************************************************************************
|
|
> File Name: main.c
|
|
> Description:
|
|
> Conclusion:
|
|
> Author: rh_Jameson
|
|
> Created Time: 2016年01月13日 14时51分50秒
|
|
************************************************************************/
|
|
|
|
#include <stdio.h>
|
|
int main(int argc,char *argv[])
|
|
{
|
|
printf("参数个数= %d\n", argc);
|
|
printf("参数1= %s\n", argv[1]);
|
|
printf("参数2= %s\n", argv[2]);
|
|
printf("参数3= %s\n", argv[3]);
|
|
return 0;
|
|
}
|
|
|