#include int main(){ float Tc,Tf; printf("Enter Tc :\n"); scanf("%f",&Tc); Tf=(1.8*Tc)+32; printf("Tf=%f \n",Tf); return 0; }