C Program to convert Fahrenheit into Celsius
#include<stdio.h>
#include<conio.h>
main()
{
float f,c;
printf(" Enter temp in Fahrenheit\n");
scanf("%f",&f);
c=(5.0/9) * (f - 32);
printf("Temp in Celsius=%f",c);
getch();
}
Output:
About Govind Prasad Joshi
Copyright (c) 2022 neb-see-solution.com All Right Reseved
No comments:
Post a Comment