Advertisement
Guest User

Untitled

a guest
Jun 19th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #test return 10
  2.  
  3. int hello();
  4. int main(){
  5. return booltoint(false) + hello();
  6. }
  7.  
  8. int booltoint(bool x);
  9. int booltoint(bool x){
  10. return 5;
  11. }
  12. int hello(){
  13. return booltoint(false);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement