fork download
  1. #include <stdio.h>
  2.  
  3. int functu(int ,int);
  4. int ghonchu(int,int);
  5.  
  6. int main()
  7. {
  8. printf("Hello, World!\n");
  9.  
  10. int (*acrib[10]) (int,int);
  11.  
  12. acrib[0] = &functu;
  13. return 0;
  14. }
Success #stdin #stdout 0s 16048KB
stdin
Standard input is empty
stdout
Hello, World!