通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
有以下程序:
#include <stdio.h> #include <string.h> main() { char *mm[4]= {"abcd", "1234", "mnop", "5678"}; char **pm= mm; int i; for(i=0;i<4;i++) printf("%s",pm[i]+i); printf("\n"); }
程序的运行结果是()。