Convert centigrade into farhenite
#include<stdio.h>
main()
{
float cent,fare;
clrscr();
printf("\n enter the tempreture in centigrade");
scanf("%f",¢);
fare=9/5*cent+32;
printf("tempreture in faren=%f",fare);
getch();
}
main()
{
float cent,fare;
clrscr();
printf("\n enter the tempreture in centigrade");
scanf("%f",¢);
fare=9/5*cent+32;
printf("tempreture in faren=%f",fare);
getch();
}
Comments
Post a Comment