Advertisement
Guest User

Untitled

a guest
Sep 14th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.11 KB | None | 0 0
  1. #include <cstdio>
  2.  
  3. auto p = [] () -> int
  4. {
  5.     printf("Hey!\n");
  6.     return 0 ;
  7. } ;
  8.  
  9. int (*main)() = p ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement