以下程序
#include <stdio.h> void fun(char **p) { int i; for (i = 0; i < 4; i++) printf("%s", p[i]); } main() { char *s[6] = {"ABCD", "EFGH", "IJKL", "MNOP", "QRST", "UVWX"}; fun(s); printf("\n"); }
程序运行后的输出结果是?
扫描二维码,关注牛客网
下载牛客APP,随时随地刷题