fork(5) download
  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <stdlib.h>
  4.  
  5. struct A;
  6.  
  7. typedef void (*func_t)(struct A*);
  8.  
  9. struct A
  10. {
  11. func_t functionPointerTable[10];
  12. int value;
  13. };
  14.  
  15. void print_stdout(struct A* a)
  16. {
  17. printf("stdout: %d\n", a->value);
  18. }
  19.  
  20. void print_stderr(struct A* a)
  21. {
  22. fprintf(stderr, "stderr: %d\n", a->value);
  23. }
  24.  
  25. int main()
  26. {
  27. struct A myA = { {print_stdout, print_stderr}, 4 };
  28.  
  29. myA.functionPointerTable[0](&myA);
  30. myA.functionPointerTable[1](&myA);
  31. return 0;
  32. }
  33.  
  34.  
Success #stdin #stdout 0s 1788KB
stdin
Standard input is empty
stdout
stdout: 4