write programming to take input temperature F° to convert it in C°
Answers
Answered by
4
Answer:
void main()
{ float celsius,fahrenheit;
printf("\nEnter temperature in Fahrenheit:"); scanf("%f",&fahrenheit);
// Fahrenheit to celsius conversion formula. celsius=(fahrenheit - 32)*5/9;
// Print the result. printf("\nCelsius = %.3f",celsius); //.3f means correct to 3 decimal places.
Answered by
0
Explanation:
oeeee St Peter ke cheater
Similar questions