#include<stdio.h>
float convertTemp(float celsius);
int main() {
float far=convertTemp(0);
printf("far : %f",far);
return 0;
}
float convertTemp(float celsius ) {
float far=celsius *(9.0/5.0) +32;
return far;
}
To embed this program on your website, copy the following code and paste it into your website's HTML: