Skip to main content
Search
Search This Blog
Kabeer Mukhi
In this Blog you will find tips and tricks related to Technology And Programming.
Home
Contact
Moreā¦
About
Home
Contact
About
Home
Contact
About
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
Labels
C++
October 14, 2018
Program to Convert the given centigrade to Fahrenheit in C++
#include <iostream>
#include<conio.h>
using namespace std;
int main()
{
float in,out;
cout << "Enter Celsius : ";
cin>>in;
out=(in * 9/5) + 32;
cout<<endl<<in<<" Celsius == "<<out<<" Fahrenheit";
getch();
return 0;
}
Output ::
You Can Download This Program From Here
Download Executable From Here
Comments
Popular Posts
November 09, 2018
Program To Find Minimum of the given two number in C++
June 03, 2018
#8 C++ Pattern
Comments
Post a Comment