fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char words[10][9] = {
  5. "Hello",
  6. "Good-bye"
  7. };
  8. printf("words[2][4] has value %d.\n", words[2][4]);
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 1676KB
stdin
Standard input is empty
stdout
words[2][4] has value 0.