通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
以下程序段的输出结果是( )。
#include<stdio.h> main() {char p[][4]={"ABC","DEF","GHI"}; int i; for(i=0;i<3;i++) puts(p[i]); }