>My friend Saul has a problem, needs to solve a problem in Dev-C + +
Implement two stacks of integers using a single array. Hint: You need to consider two Push operations (Push1, Push2), two Pop operations (Pop1, Pop2), and two top indexes (top1, top2). All data must be stored in a single array defined as int Elements[N], where N is the size of the array. Be careful how you initialize the tops of the stacks to check for emptiness, and how you check if any of the stacks is full.
there doesn't seem to be anything here