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


      1 double faren(celsius)
      2 double celsius;
      3 {
      4   return(1.8 * celsius + 32.0);
      5 }