SOURCE FILE: headStackSkeleton.cpp


#include<iostream>

using namespace std ;

void MakeHead () ;
void MakeBase() ;

int main()
{
  /* 
     Here in this main function put code that declares the
     necessary variables, gets the necessary input from the user,
     does the necessary error checking, and produces the
     necessary output.  Use a loop to print the stack of heads.
     From here in the main() function, use only function calls to
     print copies of the head and base.  The functions MakeHead()
     and MakeBase() should be the only ones that contain the
     actual 'cout' codes for making the head and base.
  */

}

/* ************************************************************** */
/* Inside the body of the "MakeHead() function below, put code to
   print one copy of the head - just one head.  In other words,
   code that will print this:

     |||||||/////////
     |              |
     |              |
     |   O      O   |
     |              |
    _|              |_
   |_                _|
     |   --------   |
     |              |
                               
*/
void MakeHead ()
{

}

/* ************************************************************** */
/* Inside the body of the "MakeBase() function below, put code to
   print one copy of the base - just one.  In other words,
   code that will print this:

     ||||||||||||||||   
   ||||||||||||||||||||   
 ||||||||||||||||||||||||   
                               
*/
void MakeBase()
{

}

/* ************************************************************** */