fork download
  1. #include <stdio.h>
  2.  
  3. void func1(int **p);
  4. void func2(int (**p)[2]);
  5.  
  6. int main()
  7. {
  8. int *p1;
  9. int (*p2)[2];
  10.  
  11. func1(&p1);
  12. printf("p1 %d\n", p1[1]);
  13. func2(&p2);
  14. printf("p2 %d\n", p2[1][1]);
  15. return 0;
  16. }
  17.  
  18. void func1(int **p)
  19. {
  20. static int a[] = {0,1};
  21. *p = a;
  22. }
  23.  
  24. void func2(int (**p)[2])
  25. {
  26. static int a[][2] = {{0,1},{2,3},};
  27. *p = a;
  28. }
  29.  
Success #stdin #stdout 0.01s 1720KB
stdin
Standard input is empty
stdout
p1 1
p2 3