问题详情
以下程序的功能是输出a数组中所有字符串,请填空。
#include <stdio.h>
main()
{ char *a[ ]={”ABC”,”DEFGH”,”IJ”,”KLMNOP”};
int i=0;
for(;i<4; i++) printf(”%s 【 13 】 );
}