WACP to convert temperature in Fahrenheit into temperature in Celsius.
4 years ago
C Programming
/* program to convert temperature in Fahrenheit into temperature in Celsius */ #include<stdio.h>
int main()
{
float C,F;
printf(“Enter Temperature in Fahrenheit \n”); scanf( “%f” , &F);
C = (F – 32)/1.8;
printf(“Celsius = %f\n” , C); return 0;
}
Sanisha Maharjan
Jan 21, 2022