C++ Course Listing

Main Code for Stack01.cpp

 

// stack.h : Header file defining user defined functions.

// Matthew Martin, 2004

int push(char);
char pop();
int showstack();

 

by Matthew Martin

top of page