Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.10 KB | None | 0 0
  1. void Test(int a) { }
  2.  
  3. void (*pt2Function)(int) = NULL;
  4.  
  5. void two()
  6. {
  7.     pt2Function = Test;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement