fork download
  1. #include<stdio.h>
  2.  
  3. int (*fun(int (*)[5]))[5];
  4.  
  5. int main(void)
  6. {
  7. int arr[5];
  8.  
  9. printf("%p\n", (void*)fun(&arr));
  10. }
  11.  
  12. int (*fun(int (*arr_add)[5]))[5]
  13. {
  14. return arr_add;
  15. }
  16.  
Success #stdin #stdout 0s 1832KB
stdin
Standard input is empty
stdout
0xbfb9a53c