Lecture 5 - Slide 39 : 40
Example - Specialization of Point<C> to Point<char>

We show how to specialize Point<C> to Point<char>

This example solely demonstrates some technicalities of class template specialization

This is example is not useful in its own right

point.h
The general class template Point followed by the specialized one.
point.cc
The implementation of the template class Point - point.cc - nothing interesting here.
prog.cc
A program that illustrate the instantiation of both the general and specialized template classes.
prog-output
Program output.