any help would be a precaded
here is the code for the celsius to fahrenheit conversion;
printf("***************************************************************\n");
printf(" >> Celsius to Fahrenhiet converter <<\n\n");
printf(" >> Enter temperature in Celsius = ");
scanf("%d", &ce);
fa=(ce*9/5)+32;
printf(" >> The tempurature in Fahrenhiet is %d\n", ce);
printf("***************************************************************\n");
break;
just say if you need more info
many thanks