Script started on Wed Mar 1 11:30:31 2000 corona 65% ls IntStack.h Makefile typescript IntStack.o testIntStack.cpp corona 66% cat Makefile testIntStack: IntStack.h testIntStack.cpp IntStack.o g++ testIntStack.cpp IntStack.o -o testIntStack corona 67% make g++ testIntStack.cpp IntStack.o -o testIntStack ld32: WARNING 84: /usr/lib32/libm.so is not used for resolving any symbol. corona 68% testIntStack New IntStack created... IsEmpty returns 1 IsFull returns 0 Whole stack: Push(3) Whole stack: 3 IsEmpty returns 0 IsFull returns 0 Pop returns 3 Whole stack: IsEmpty returns 1 IsFull returns 0 Pushing 5 elements into the stack Whole stack: 0 1 2 3 4 IsEmpty returns 0 IsFull returns 1 Pop returns 4 Whole stack: 0 1 2 3 IsEmpty returns 0 IsFull returns 0 corona 69% exit exit script done on Wed Mar 1 11:31:10 2000