fork download
  1. #include <stdio.h>
  2.  
  3.  
  4. int main(void) {
  5. // your code goes here
  6. char *s[]= {"department","Information","Technology","National"};
  7. char **ptr[] = {s+3,s+1,s+2,2};
  8. char ***p;
  9. p=ptr;
  10. printf("%s \n",*(*(p)));
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 10320KB
stdin
Standard input is empty
stdout
National