以下程序段的输出结果是( )。 #include<stdio.h> main() { char p[][4]={’’ABC’’,’’DEF’’,’’GHI’’}; int i; for(i=0;i<3;i++

admin2021-04-28  15

问题 以下程序段的输出结果是(    )。
    #include<stdio.h>
    main()
    {  char p[][4]={’’ABC’’,’’DEF’’,’’GHI’’};
    int i;
    for(i=0;i<3;i++)
    puts(p);
    }

选项 A、A
B
C
B、A D G
C、A B C
D E F
G H I
D、A B C

答案C

解析 本题首先定义了一个字符串数组p,通过for循环输出p[0]、p[1]、p[2]的值。
转载请注明原文地址:https://kaotiyun.com/show/Kktp777K
0

最新回复(0)