Advertisement
Guest User

Untitled

a guest
May 20th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. int (* (* F) ()) ();
  2.  
  3. F
  4. F is a...
  5.  
  6. (* F)
  7. F is a pointer to...
  8.  
  9. (* F)()
  10. F is a pointer to function that...
  11.  
  12. (* (* F) ())
  13. F is a pointer to function that returns pointer to...
  14.  
  15. (* (* F) ()) ()
  16. F is a pointer to function that returns pointer to function that...
  17.  
  18. int (* (* F) ()) ();
  19. F is a pointer to function that returns pointer to function that returns int
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement