Convert the value of temperature from centigrade to Fahrenheit using with the help of f=c*9/5+32;



#include<iostream>
#include<conio.h>
using namespace std;
int main()
{
float c,f;
cout<<"convert the value of temperature in Centigrade \n";
cin>>c;
f=c*9/5+32;
cout<<"convert the value of temperature in Fahrenheit \n"<<f;
return 0;
}