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