Guest User

Untitled

a guest
Jul 18th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. char key;
  6.  
  7. while ((key = getchar()) != '\n')
  8. printf ("\n%c",key);
  9.  
  10. return 0;
  11. }
Add Comment
Please, Sign In to add comment