Converts the specified temperature from degrees Fahrenheit to degrees Celsius ((temp - 32) / 1.8).
Syntax
Ftoc (temp)
where temp is temperature in degrees Fahrenheit.
Example
'This should print approximately 15.
DECLARE Temp_C
Temp_C = FTOC(59)
PRINT "Temperature Celsius for 59 Fahrenheit = ", Temp_C