// THE SOURCE CODE PROVIDES THE SOLUTION OF THE LPP PROBLEM POSED BY THE USER //
The mode followed by the program to solve the given LPP problem is using the SIMPLEX ALGORITHM.
The code allows user to enter the coefficients of the objective and subjective functions , with that the code carries out the simplex method to bring out the solution.
This solution is present in the final matrix, gets pushed to stack, copied to a text file .
Here, the purpose of the stack function is that, as the user keeps giving the problems, all these solutions get pushed to the stack.
So that the user can take a final look at all the solutions in one go.