Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. void Clean(int floor)
  4. {
  5. if(floor>5)
  6. {
  7. return;
  8. }
  9. else
  10. Clean(floor+1);
  11. printf("%d th Floor is Clean\n",floor);
  12. }
  13.  
  14.  
  15. int main()
  16. {
  17.  
  18. int floor = 0;
  19. Clean(floor);
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement