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 (204B)


      1 #include <stdio.h>
      2 main() /* Fix this to be Celsius-Fahrenheit table */
      3 {
      4     int cel;
      5     for (cel = 0;
      6          cel <= 100;
      7          cel = cel + 20)
      8         printf("%4d %6.1f\n", cel, (1.8*cel+32.0));
      9 }