#include #include #include "point.h" using namespace std; int main() { const point A {3, 4}; //Call the constructor with 2 explicit arguments const point B; //Origin. Call constructor with no explicit args. cout << distance(A, B) << "\n"; return EXIT_SUCCESS; }