/* Examples of Getting values into a 2-dimensional array i.e. initializing the 2-D array */ #include main() { int i = 0; /* Loop counter */ char t[3][3] = { {'1','2','3'}, {'4','5','6'}, {'7','8','9'} }; /* List all elements of the array */ for(i = 0; i < 9; i++) printf(" t: %c\n", *(*t + i)); }