celsiusToFahrenheit function

double celsiusToFahrenheit(
  1. double celsius
)

Convert celsius to fahrenheit

Implementation

double celsiusToFahrenheit(double celsius) {
  return (celsius * 9 / 5) + 32;
}