Guest User

Untitled

a guest
Dec 14th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4.  
  5. int funk(char letter){
  6.  
  7. printf("%c ", letter);
  8.  
  9. if (letter != 'Z') {
  10. funk(letter + 1);
  11. }
  12.  
  13. else {
  14. printf("\n");
  15. }
  16.  
  17. printf("%c ", letter);
  18. }
  19.  
  20. int main()
  21. {
  22. funk('A');
  23. printf("\n");
  24. return 0;
  25. }
Add Comment
Please, Sign In to add comment