#include<stdio.h>
int main()
{
float c,fo;
printf("Enter celcius: ");
scanf("%f",&c);
fo = c * 9/5 + 32;
printf("celcius converted to farenheit: %f",fo);
return 0;
}
int main()
{
float c,fo;
printf("Enter celcius: ");
scanf("%f",&c);
fo = c * 9/5 + 32;
printf("celcius converted to farenheit: %f",fo);
return 0;
}
Bhuvan Arora
No comments:
Post a Comment