An error saying unidentifed function "push", "pop", and"display" occurs, what should i add to fix i
- by Alesha Aris
#include<stdio.h>
#include<iostream.h>
#include<conio.h>
#include<stdlib.h>(TOP)
#include<fstream.h>
#define MAX 5
int top = -1;
int stack_arr[MAX];
main()
{
int choice;
while(1)
{
printf("1.Push\n");
printf("2.Pop\n");
printf("3.Display\n");
printf("4.Quit\n");
printf("Enter your choice : ");…