When a code segment has an error, the code would either not run at all, or it would not run properly.
On the third line, we have (5/9) * (fTemp - 32).
5 and 9 are integers, and they would be executed as integers.
This means that 5/9 will result to 0.
The fix to this error by typecasting is by converting one or both of 5 and 9 to double.
This can be done by rewriting them as: double(5) and double(9)
Read more about programming errors at:
https://brainly.com/question/23782010