C++ Program to Perform Celsius to Fahrenheit Conversion :Today we make Simple program.Here is source code of the C++ program which performs Celsius to Fahrenheit conversion. Fahrenheit and Celsius are two unit for measure temperature. We have standard formula to Convert Celsius to Fahrenheit using this formula you can change temperature Fahrenheit to Celsius.
C++ Program to Perform Celsius to Fahrenheit Conversion
#include<iostream>
#include<conio.h>
using namespace std;
main()
{
float f,c;
cout<<"Enter the value of the Centigrate:";
cin>>c;
f=9/5.0*c+32;
cout<<c<<"celcius=\n"<<f<<"fahranhite\n";
system("pause");
}
Output of Program

Hope you make Convert Celsius to Fahrenheit Conversion in C++.if you Face any problem in This Code.Please Tell Us.Thank you.