Listing 1. Two instances of a type.
void f(){
  ...
  int ndays;//instance of an int
  Date cdt; //instance of the abstract data type Date
  ...
}//end function