In this program, we are going to share a Fahrenheit to Centigrade Conversion in C++. If you are a beginner and want to start learning the C programming, then keep your close attention in this tutorial as I am going to share a program for Fahrenheit to Centigrade Conversion in C++.
To increase your C++ knowledge, practice all C++ programs:
Copy the below C program and execute it with the help of GCC compiler. At the end of this program, We have shared the output of this program.
1 2 3 4 5 6 7 8 9 10 11 12 | #include<iostream.h> #include<conio.h> void main() { clrscr(); float fah, cel; cout<<"Enter temperature in Fahrenheit : "; cin>>fah; cel=(fah-32) / 1.8; cout<<"Temperature in Celsius = "<<cel; getch(); } |
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.