Q. Write a C++ program to convert temperature from Centigrade to Fahrenheit using function.
Answer:
Following program is converting temperature from Centigrade to Fahrenheit.
Output:

Answer:
Following program is converting temperature from Centigrade to Fahrenheit.
#include<iostream>
using namespace std;
float convert(float);
int main()
{
float cel, fah;
cout<<"\n Enter Temperature in Celsius : ";
cin>>cel;
fah=convert(cel);
cout<<"\n Temperature in Fahrenheit : "<<fah;
return 0;
}
float convert(float cel)
{
return(1.8 * cel) + 32;
}
Output:



