Showing posts with label C Programming. Show all posts
Showing posts with label C Programming. Show all posts

Sunday, 15 January 2012

Program To Find Temprature Fahrenheit to Celsius In C++

#include<iostream.h>
#include<conio.h>
#include<math.h>
main()
{
clrscr();
float f,c,x;
cout<<"Enter number=";
cin>>x;
cout<<f;
getch();
}

Program To Find Square Root of Number In C++

#include<iostream.h>
#include<conio.h>
#include<math.h>
main()
{
clrscr();
float x,y;
cout<<"Enter number";
cin>>x;
cout<<y;
getch();
}

Program To Find Power Of Number In C++

#include<iostream.h>
#include<conio.h>
#include<math.h>
main()
{
clrscr();
float x,y,z;
cout<<"Enter number";
cin>>x;
cout<<"Enter power";
cin>>y;
cout<<z;
getch();
}