fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a[5];
  5. char b[3][5];
  6. double c[3][5];
  7. char *d[5];
  8. sub1(a);
  9. sub2(b);
  10. sub3(c);
  11. sub4(d);
  12. return 0;
  13.  
  14. }
  15.  
  16. void sub1(int *p)
  17. {
  18. ;
  19. }
  20.  
  21. void sub2(char (*p)[5])
  22. {
  23. ;
  24. }
  25.  
  26. void sub3(double (*p)[5])
  27. {
  28. ;
  29. }
  30.  
  31. void sub4(char **p)
  32. {
  33. ;
  34. }
  35.  
  36.  
Success #stdin #stdout 0s 9296KB
stdin
Standard input is empty
stdout
Standard output is empty