fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char *p[3][2] = {{"abc", "defg"}, {"hi", "jklmno"}, {"pqrstuvw", "xyz"}};
  5. printf("%c\n",p[1][1][2]);
  6. return 0;
  7. }
  8.  
Success #stdin #stdout 0s 4548KB
stdin
Standard input is empty
stdout
l