fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. char * arr[3][4] = {
  6. {"hello", "world"},
  7. {"my", "name", "is"},
  8. {"i'm", "beginner", "point", "makes"}
  9. };
  10.  
  11. printf ("%s", arr[2][3]);
  12. return 0;
  13. }
Success #stdin #stdout 0s 1832KB
stdin
Standard input is empty
stdout
makes