设下面程序的可执行文件名为prg.exe,在该程序所在子目录下输入以下命令行: prg hello good<回车>则程序的输出结果是______。 main()(int argc,char*argv[]) { int i; if(argc<=0)return; for(i=1;i<argc;i++) printf("%c",*argv[i]); }
A.hello good
B.hg
C.hel
D.hellogood
第1题:
A.You forgot to type your name or you typed more parameters
B.Hello harry
C.Hello cmdline
D.Hello
第2题:
下面程序的文件名为t.exe,在DOS下输入的命令行参数为:t to meet me<回车>
则程序输出的结果是
#include "stdio.h"
main(argc,argv)
int argc;char *argv[ ];
{ int i;
printf("%d\n",argc);}
A.3
B.4
C.2
D.以上答案都不正确
第3题:
假定下列程序的可执行文件名为prg.exe,则在该程序所在的子目录下输入命令行: prg hello good<回车>后,程序的输出结果是 main()(int argc, char *argv[]) { int i; if(argc<-0)return; for(i=1;i<argc;i++) printf("%c", *argv[i]); }
A.hello good
B.hg
C.hel
D.hellogood
第4题:
假定下面程序可执行文件名prg.exe,则该程序所在的子目录下输入命令行:prg hello good<回车>后,程序的输出结果是_______。 main(int argc,char*argv[]) { int i; for(i=1;i<argc;i++)printf("%c",argv[i]); }
A.hello good
B.hg
C.hel
D.hellogood
第5题:
下面程序的文件名为t.exe,在DOS下输入的命令行参数如下:t to meet me<回车> 则程序输出的结果是 #include"stdio.h" main(argc,argv) int argc;char*argv[]; { int i; printf("%d\n",argc);}
A.3
B.4
C.2
D.以上答案都不正确