#include <stdio.h> void main(void) { // int x[3][5] = {"ab", "cccc", "def"}; // compilation error char x[3][5] = {"ab", "cccc", "def"}; int i, j; for (i=0; i<3; i++) for (j=0; j<4; j++) printf("%d %d: %c(%x)\n", i, j, x[i][j], x[i][j]); for (i=0; i<3; i++) printf("%s\n", x[i]); }