
Write a program to show the implementation of fixed - length version of integer stack. Create an interface called intStack with two methods, "void push(int item)" and "into pop()". You. Also have to show the constructor. The push operation takes an input from the user and stores in the stack only if the stack is not full. If the stack is full, display a message saying stack overflow. The pop operation returns an integer number from the top of the stack. Just. Check whether the stack is not empty before popping the value out of the stack.