AD4BP

Write a programe convert temperature celcious into fahrenheit.

Input:-
#include< stdio.h >
#include< conio.h >
void main( )
{
float c,f;
clrscr( );
printf("Enter temperature in Celcious: ");
scanf("%f",&c);
f=1.8*c+32;
printf("\nTemperature in Fahrenheit=%2.2f",f);
getch( );
}

Output:-
Enter temperature in Celcious: 25
Temperature in Fahrenheit=77.00