learning-cc4e

Solution to https://cc4e.com/. If you copy these you're not right in the head.
git clone https://kaka.farm/~git/learning-cc4e
Log | Files | Refs

solution.c (172B)


      1 #include <stdio.h>
      2 main() {
      3     int c;
      4     while ((c = getchar()) != EOF) {
      5       if (c == ' ') {
      6         putchar('\n');
      7       } else {
      8         putchar(c);
      9       }
     10     }
     11 }