#include #include #include "point.h" using namespace std; int main() { const point A {3.0, 4.0}; //Call the two-argumemt constructor. const point B {A}; //Call the "copy constructor". point C; //Call the default constructor. C = A; //C.operator=(A); cout << "A = " << A << "\n"; cout << "B = " << B << "\n"; cout << "C = " << C << "\n"; return EXIT_SUCCESS; }