#include "Stack01b.h" void push(int n) { arr[++top] = n; } int pop() { return arr[top--]; } int isEmpty() { return top == EMPTY; }