Advertisement
Guest User

Untitled

a guest
Jan 19th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdbool.h>
  3.  
  4. bool live_another_day(void);
  5.  
  6. int main(void)
  7. {
  8. int feels = 0;
  9. int maxfeels = 100;
  10. bool no_gf = true;
  11. while (feels < maxfeels)
  12. {
  13. nogf = live_another_day();
  14. if (no_gf)
  15. feels++;
  16. else
  17. {
  18. printf("I don't knonw that feel :\n");
  19. return 0;
  20. }
  21. }
  22. printf("It's too late\n");
  23. return 1;
  24. }
  25. bool live_another_day(void)
  26. {
  27. return true;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement