Title / Description
Code #include <stdio.h> #include <string.h> int main() { int c; while((c = getchar()) != EOF){ if(c == ' '){ while((c = getchar()) == ' '); putchar(' '); } putchar(c); } return 0; }
Author
Highlight as C C++ CSS Clojure Delphi ERb Groovy (beta) HAML HTML JSON Java JavaScript PHP Plain text Python Ruby SQL XML YAML diff code