#include class Istack { int sz; int top; int* stack; public: // Just prototypes void init(int ) ; void push(int ) ; int pop() ; bool isempty() ; bool isfull() ; };