I need some help with a program for converting Fahrenheit to Celsius in C. My code looks like this
#include int main(void) { int fahrenhe
You need to use floating point arithmetic in order to perform these type of formulas with any accuracy. You can always convert the final result back to an integer, if needed.