Lecture 5 - Slide 34 : 40
Example - Point<C,dim,default_value>

We make a Point class parameterized with a type C, an integer dimension, and some default value in C

All template parameters are defaulted

point.h
A type parameterized variant of class Point - point.h.
point.cc
The implementation of the template class Point - point.cc.
prog.cc
A program that illustrate the template instantiation.
prog-output
Program output.