#include <stdio.h> int main() { char w[][10]={"ABCD", "EFGH", "TJKL", "MNOP"}, k; for(k=1; k<3; k++) printf("%s\n",w[k]); }