Q. Write a C program to convert Fahrenheit to Celsius temp temperature.
Ans.
/*C program to convert Fahrenheit to Celsius*/
/*Formula(Fahrenheit to Celsius):
Celsius = (Fahrenheit - 32) / 1.8
*/
#include<stdio.h>
#include<conio.h>
int main()
{
float fh,cl;
printf("Enter temperature value in
or
Q. Write a C program to accept temperature in Fahrenheit from user and convert into the Celsius.Ans.
/*C program to convert Fahrenheit to Celsius*/
/*Formula(Fahrenheit to Celsius):
Celsius = (Fahrenheit - 32) / 1.8
*/
#include<stdio.h>
#include<conio.h>
int main()
{
float fh,cl;
printf("Enter temperature value in