Guest User

Untitled

a guest
May 25th, 2018
77
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. int main(void)
  4. { char ch;
  5. int term = 5;
  6. int counter=0;
  7.  
  8. printf("Enter Character: ");
  9. scanf("%c", &ch);
  10.  
  11. while(term>=counter)
  12. {counter++;
  13. printf("%s", ch);
  14.  
  15. }
  16. }
Add Comment
Please, Sign In to add comment