# include <stdio.h>
void main ()
{
float a,b;
printf("Enter the Value in Centigrade=");
scanf("%f",&a);
b=((9*a)/5)+32;
printf("Value in Farenhite=%f",b);
getchar();
}
No comments
If you have any doubt, please let me know that with your valuable comments.
No comments
If you have any doubt, please let me know that with your valuable comments.