Guest User

Untitled

a guest
Jun 22nd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. int foo(char *c) {...}
  2.  
  3. main() {
  4. int (*thud)(void *);
  5.  
  6. thud = (int (*)(void *))(foo);
  7. }
Add Comment
Please, Sign In to add comment