#include #include "stack2.h" Stack* createStack() { Stack* s = new Stack; s->top = 0; return s; }