Advertisement
Guest User

Untitled

a guest
Oct 6th, 2015
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. //function type declaration
  2. typedef <function return type> * (* <function type name>)( <arg type>, ... ); //don't include variable names
  3.  
  4. //instance
  5. <function type name> func;
  6.  
  7. //usage
  8. func = &<function instance name>;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement