#include<stdio.h>
#include<conio.h>
void main()
{
float c,f;
printf("Enter the Temperature in Centigrade: ");
scanf("%f",&c);
f=(1.8*c)+32;
printf("Temparature in Fahrenheit is : %f",f);
}
OUTPUT:
Enter the Temperature in Centigrade: 24 Temparature in Fahrenheit is : 75.199997