C++程序输出结果分析
以下程序的输出结果是:
char *alpha[6] = {"ABCD", "EFGH", "IJKL", "MNOP", "QRST", "UVWX"};
char **p;
main() {
int i;
p = alpha;
for (i = 0; i < 6> printf("%s
", p[i]);
}
}
char *alpha[6] = {"ABCD", "EFGH", "IJKL", "MNOP", "QRST", "UVWX"};
char **p;
main() {
int i;
p = alpha;
for (i = 0; i < 6> printf("%s
", p[i]);
}
}
8.81MB
文件大小:
评论区