#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
float a=0,b=0;
clrscr();
printf("\n Please enter the tempreature = ");
scanf("%f",&a);
b=((a-32)*5)/9;
printf("\n Tempreature in calcius = %f",b);
getch();
}
#include<conio.h>
#include<math.h>
void main()
{
float a=0,b=0;
clrscr();
printf("\n Please enter the tempreature = ");
scanf("%f",&a);
b=((a-32)*5)/9;
printf("\n Tempreature in calcius = %f",b);
getch();
}
0 Comments