A.ropes in hand
B.ropes are in hand
C.with hand in ropes
D.hand with ropes
第1题:
有以下程序#include <stdio.h>void fun(char **p){ p=p+2; printf("%s\n",*p);}main(){ char *a[]={"Morning","Afternoon","Evening","Night"}; fun(a);}程序的运行结果是A.rningB.afternoonC.ternoon D.Evening
第2题:
有以下程序
#include<stdio.h>
void fun(char**p)
{++p;printf("%s",*p);}
main
{char*a[]={"Morning","Afternoon","Evening"," Night");
fun(a);
}
程序的运行结果是( )。
A.A.Afternoon
B.fternoon
C.Morning
D.orning
第3题:
有以下程序
#include<stdio.h>
void fun(char **p)
{
++p; printf(“%s\n”,*p);
}
main()
{
char *a[]={“Morning”,”Afternoon”,”Evening”,”Night”};
fun(
A.;
}
程序的运行结果是( )。
A.Afternoon
B.fternoon
C.Morning
D.orning
第4题:
有以下程序 #include<stdio.h> void fun(char**p) {++p;printf("%s",*p);} main {char*a[]={"Morning","Afternoon","Evening"," Night"); fun(a); } 程序的运行结果是( )。
A.Afternoon
B.fternoon
C.Morning
D.orning
第5题:
将考生文件夹下的TODAY文件夹中的MORNING.txt文件移动到文件夹下EVE-NING文件夹中,并改名为NIGHT.wri。
第6题:
下面语句执行后,变量w中的值是____。 w=Choose(2 , "Morning", "Afternoon", "Day", "Night",)
A.Morning
B.Afternoon
C.Day
D.Night