Skip to content

Instantly share code, notes, and snippets.

View israr-ahmad's full-sized avatar

Israr ahmed israr-ahmad

  • Code Builders
  • Lahore
View GitHub Profile
#include <iostream>
using namespace std;
bool isEmpty(int top);
bool isFull(int top,int maxSize);
void push(int &top,int stack[],int item,int maxSize);
void pop(int &top,int stack[]);
void print(int top,int stack[]);