itgle.com

有以下程序: include using namespace std; char *x[]={"First", "Second", "Third"有以下程序: #include <iostream> using namespace std; char *x[]={"First", "Second", "Third" }; void f(char *z[ ]) { cout<<*z++<<end1; } int main ( ) { char **y; y=x; f(y); return 0; }A.产生

题目
有以下程序: include using namespace std; char *x[]={"First", "Second", "Third"

有以下程序: #include <iostream> using namespace std; char *x[]={"First", "Second", "Third" }; void f(char *z[ ]) { cout<<*z++<<end1; } int main ( ) { char **y; y=x; f(y); return 0; }

A.产生语法错误

B.First

C.Secpnd

D.Third


相似考题
更多“有以下程序: #include <iostream> using namespace std; char *x[]={"First", "Second", "Third" ”相关问题
  • 第1题:

    有以下程序:includeincludevoid main( ){char * p="abcde\0fghjik\0";c

    有以下程序: #include<string.h> #include<iostream.h> void main( ) { char * p="abcde\0fghjik\0"; cout < < strlen(p) ;} 程序运行后的输出结果是

    A.12

    B.15

    C.6

    D.5


    正确答案:D
    解析:C++语言规定了一个字符串结束标志,以字符'\0'代表,在遇到'\0'时,表示字符串结束,由它前面的字符组成字符串。

  • 第2题:

    有如下程序段 if(x>0) { System.out.println("first");} else if (x > -4) { System.out.println("second");} else { System.out.println("third");} x的取值在什么范围内时,将打印出字符串“second"?

    A.x > 0

    B.x > -4

    C.x < = -4

    D.x < = 0 & & x > -4


    正确答案:D
    解析:此题考查if语句的用法,x>0时打印“first”,x,-3&&x<=0时打印“second”,x<=-3时打印“third”。

  • 第3题:

    有以下程序,程序运行的结果是 ______。includeincludevoid main(){charx

    有以下程序,程序运行的结果是 ______。 #include<iostream.h> #include<string.h> void main(){ char x[]= "C++" ,y[10]= "C++" ; cout<<sizeof(x)/sizeof(char)<<“,”<<sizeof(y)/sizeof(char); }

    A.3 3

    B.4 4

    C.4 10

    D.10 10


    正确答案:C

  • 第4题:

    有如下程序段: if(x>0){ System.out. println("first");} else if(x>-4){ System.out.println("second");} else { System.out.println("third");}x的取值在什么范围内时,将打印出字符串 "second" ?

    A.x>0

    B.x>-4

    C.x<= -4

    D.x<= 0&&x> -4


    正确答案:D
    解析:此题考查订语句的用法,x>0时打印"first",x>-4 && x=0时打印"second",x=-4时打印“third”。

  • 第5题:

    有如下程序段if (x>0) {System.out.println ("first") ;}else if (x>-4) { System.out.println ("second") ; }else{System.out.println ("third") ;}x的取值在( )范围内时,将打印出字符串"second"。

    A.x>0

    B.x>-4

    C.x<=-4

    D.x<=0&&x>-4


    正确答案:D