1 2 3 4 5 6 7 8 9 10 11
#include "mydefs1.h" #include <assert.h> // Array implementation of stacks. // Grow from high index towards 0.
// Array implementation of stacks. // Grow from high index towards 0.
Notes
*assert( exp ) does nothing if exp is false, otherwise it prints a run-time error,See King Chapter 24.
*
We are using a default constructor.
March 14, 1998
Page 10
C201/TAM