WAP USING OPERATOR OVERLOADING TO ENTER RECTANGULAR CO-ORDINATES AND CONVERT THEM INTO POLAR CO-ORDINATES & VICE-VERSA
#include<conio.h>
#include<iostream.h>
#include<math.h>
class rec;
class polar
{
float rad,ang;
public:
polar() //without default constructor they is an error message
{ //couldnot find a match for polar::polar()
}
#include<conio.h>
#include<iostream.h>
#include<math.h>
class rec;
class polar
{
float rad,ang;
public:
polar() //without default constructor they is an error message
{ //couldnot find a match for polar::polar()
}














