Lecture 4 - Slide 37 : 40
Friends - Class Point - implicit conversion

The left operand of the dot operator cannot be implicit converted.

The parameters of a friend function can, however, be implicit converted.

point.h
Class Point - header file.
point.cc
Class Point - implementation - including the implementation of operator<<.
prog.cc
The program that use the operator.