Hi, welcome to my website Programming.OM. My name is Om prakash kartik. This blog helps you to learn programming languages concepts and technique.
#include<iostream> #include<conio.h> using namespace std; int main() { float f,c; //Declaration of variable cout<<"Enter tempreture in fahrenheit degrees:-"; cin>>f; c=(f-32)*5.0/9.0; cout<<"Tempreture in centigrade="<<c; getch(); }
0 Comments