Ctof Function

Converts degrees Celsius to degrees Fahrenheit ((temp * 1.8) + 32).

Syntax

Ctof (temp)

where temp is the temperature in degrees Celsius.

Example

'This should print approximately 59.

DECLARE Temp_F

Temp_F = CTOF(15)

PRINT "Temperature Fahrenheit for 15 Celsius = ", Temp_F