celsius_to_fahrenheit.RdThis function converts temperature from Celsius to Fahrenheit.
celsius_to_fahrenheit(celsius)A numeric value representing the temperature in Fahrenheit.
celsius_to_fahrenheit(0) # Should return 32
#> [1] 32
celsius_to_fahrenheit(100) # Should return 212
#> [1] 212