fork(1) download
  1. #include <stdio.h>
  2.  
  3. typedef void FunkcjaKinoType(int tab);
  4.  
  5. void FunkcjaKino(int tab) { printf("Kino %d",tab); }
  6.  
  7. void FunckaZoo(int tab,FunkcjaKinoType fun)
  8. {
  9. fun(tab);
  10. }
  11.  
  12. int main()
  13. {
  14. int tab=666;
  15. FunckaZoo(tab,FunkcjaKino);
  16. return 0;
  17. }
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
Kino 666