Advertisement
lukasd

wskazniki do funkcji przyklady

Feb 15th, 2018
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.33 KB | None | 0 0
  1. void fajna(int a,int b)
  2. {
  3.     printf("fajna\n");
  4. }
  5. void nowa(int c, int d)
  6. {
  7.     printf("nowa\n");
  8. }
  9. void zrob_cos( void(*coMamZrobic)(int,int))
  10. {
  11.     coMamZrobic(2,5);
  12. }
  13. void kolos1()
  14. {
  15.     void(*coMamZrobic)(int, int) = &fajna;
  16.     //int a = 4;
  17.     zrob_cos(&nowa);
  18.     coMamZrobic(2,3);
  19.     zrob_cos(coMamZrobic);
  20.     //zrob_cos(&fajna);
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement