Advertisement
Guest User

Untitled

a guest
Apr 26th, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. void voot(int o_amount, bool flag)
  2. {
  3. if (o_amount == 0)
  4. {
  5. printf("t");
  6. return;
  7. }
  8.  
  9. if (flag == true)
  10. printf("v");
  11.  
  12. printf("o");
  13. voot(o_amount - 1,false);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement