Can you help me solve this? Do it on C pls
Ask the user to input a temperature in Fahrenheit using printf.
Scan this value and convert the temperature to Celsius using a formula.
Output the result in Celsius using printf.
Ex: "The temperature in Celsius is x degrees."
Coding
#include<stdio.h>//important header file for input and
output
int main()
{
float temp_f,temp_c;//declare variable here
printf("Please Enter The value in Fahrenheit
");//input message
scanf("%f",&temp_f);//user input here
temp_c=(temp_f-32)*5/9;//formula of convertion of
farenhit to Celsius
printf("The temperature in Celsius is x degrees
%f",temp_c);//output display Here
}
output:

if you still have any Problem regarding this question please comment and if you like my code please appreciate me by thumbs up thank you.........