Question: What is not a valid command with this declaration?

  1. `printf("%c", string[1][2]);`
  2. `printf("%s", string[1][2]);`
  3. `printf("%s", string[1]);`
  4. `printf(string[1]);`

Answer: The correct answer of the above question is Option B:`printf("%s", string[1][2]);`