c program convert temperature fahrenheit celsius degree
//celsius to fahrenheit
c program convert temperature fahrenheit celsius degree
#include<stdio.h> int main()
{
float c,f;
printf("Enter the temp in centigrade");
scanf("%f",&c);
f=(1.8*c)+32;
printf("Temperature in fahrenheit %f\n",f);
return 0;
No comments:
Post a Comment