CELSUIUS TO FARANHEIT

#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
float f,c;
clrscr();
printf("Please type the temperature in Fahrenheit");
scanf("%f",&f);
c=(f-32)*5/9;
printf("Temperature in Celsius is %f",c);
getch();
}

No comments:

Related Posts with Thumbnails