Advertisement
Guest User

Untitled

a guest
Aug 19th, 2018
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.14 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. main()
  4. {
  5.     int c;
  6.     while ((c = getchar()) != EOF) {
  7.         if (c == ' ')
  8.             printf(" ");
  9.         else
  10.             putchar(c);
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement