#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 {4.0, 3.0}; //Call the two-argument constructor. C = A; //C.operator=(A); cout << "B = " << B << "\n"; cout << "C = " << C << "\n"; return EXIT_SUCCESS; }