I hope you will enjoy this post.
#include<stdio.h>
#include<conio.h>
void main()
{
float f,c;
printf("Enter the temperature in celsius: \n");
scanf("%f",&c);
f=1.8*c+32;
printf("Temperaturein farenheat is %f",f);
getch();
}
so try this program and enjoy.
No comments:
Post a Comment