#include main (void) { float f,c; printf("Celsius:\n"); scanf("%f",&c); f=1.8*c+32; printf("When Celsius=%f,Fahrenherit=%f\n",c,f); }