Computer Science, asked by askarihasan369, 6 hours ago

write programming to take input temperature F° to convert it in C°​

Answers

Answered by jayceecastaneda87
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 abhijeetroy1725
0

Explanation:

oeeee St Peter ke cheater

Similar questions