36

单选题 36 /76

下列程序的输出结果为:

#include <stdio.h>
#include <string.h>

void main() {
    char* a[] = {"hello", "the", "world"};
    char** pa = a;
    pa++;
    printf("%s\n", *pa);
}


参考答案

theworld
the
hello
hellotheword