C Program to convert the given temperature in to centigrade to Fahrenheit
void main()
{
float c;
clrscr();
printf("Enter the temperature in Centigrade=");
scanf("%f",&c);
printf("\n\n Temperature in Fahrenheit=%f", (c*(9.0/5.0)-32));
getch();
}
{
float c;
clrscr();
printf("Enter the temperature in Centigrade=");
scanf("%f",&c);
printf("\n\n Temperature in Fahrenheit=%f", (c*(9.0/5.0)-32));
getch();
}