hi,
I need little bit help in C coding
I have to use these functions (its shown below) to write a program that prints charts showing the Fahrenheit equivalent to c temp from 0-100.
int celsiusToFahrenheit(int celsiusTemp)
{
return ((9.0/5.0) * celsiusTemp) + 32; /* Formula of celsius to fahrenheit */
}
thanks alot