The following program
main() { static char a[3][4] = {"abcd", "mnop", "fghi"}; putchar(**a); }
Answer: D
*a points to the string "abcd".**a is the first character of "abcd", which is the character 'a '