#include <stdio.h>

float converttemp(float celcius);

int main() {
   float far= converttemp(37);
   printf("far :%f",far);
    return 0;
}

float converttemp(float celcius){
    float far = celcius * (9.0 /5.0) + 32;
    return far;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: