#include<stdio.h>
#include<conio.h>
main()
{
int c;
float f;
clrscr();
printf("\n enter the temprature in celsius");
scanf("\n %d",&c);
f=9/5*(c+32);
printf("\n f =%f",f);
}
return (0);
}
output:-
enter the temprature in celsius (c)=30
f=62.000