fork download
  1. #include <stdio.h>
  2.  
  3. void Func(void);
  4.  
  5. int main(void)
  6. {
  7. int Array[10];
  8.  
  9. int *pArray;
  10. void (*pFunc)(void);
  11.  
  12. pArray = Array;
  13. pFunc = Func;
  14.  
  15. return 0;
  16. }
  17.  
  18. void Func(void)
  19. {
  20. return;
  21. }
  22.  
Success #stdin #stdout 0s 9288KB
stdin
Standard input is empty
stdout
Standard output is empty