Guest User

Untitled

a guest
Dec 12th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. void recurse()
  2. {
  3. static int c = 1;
  4. if(c > 5)
  5. return ;
  6. printf("%d ",c);
  7. c = c + 1;
  8. recurse();
  9. printf("%d ",c);
  10. }
  11.  
  12. int main()
  13. {
  14. recurse();
  15. return 0;
  16. }
  17.  
  18. c
  19.  
  20. c
Add Comment
Please, Sign In to add comment