Again... bolded thing is a clue.... I don't have time to play games as I am running late for class...

Code:
double convertPrint(double temp)
{
    temp = convertFahrenheit(temp);
    printf("Your tempurature in Fahrenheit is %lf", temp);

    return temp;
}