fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int c = getchar();
  5.  
  6. while (c != EOF){
  7.  
  8. do {
  9. putchar(c);
  10. } while (c != ' ' && (c = getchar()) != EOF);
  11.  
  12. while (c == ' ') {
  13. c = getchar();
  14. }
  15. }
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0s 2296KB
stdin
    This     sentence    has   lots   of   spaces   !!!    
 
stdout
 This sentence has lots of spaces !!!