#include <stdio.h>

int main(void) {
  char words[10][9] = {
    "Hello",
    "Good-bye"
  };
  printf("words[2][4] has value %d.\n", words[2][4]);
  return 0;
}