Guest User

Untitled

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