/* * first, the stack size */ #define STACKSIZE 1000 /* * next, the function prototypes */ void push(int); int pop(int *); void printstack(void);