Skip to content

Instantly share code, notes, and snippets.

View nachiketkanore's full-sized avatar
🖥️
Exploring Computer Science

Nachiket Kanore nachiketkanore

🖥️
Exploring Computer Science
View GitHub Profile
@nachiketkanore
nachiketkanore / Stack_ArrayImplementation_OOP.cpp
Created January 24, 2019 08:48 — forked from mycodeschool/Stack_ArrayImplementation_OOP.cpp
An object oriented implementation of stack using arrays in C++.
// Stack - Object oriented implementation using arrays
#include <iostream>
using namespace std;
#define MAX_SIZE 101
class Stack
{
private:
int A[MAX_SIZE]; // array to store the stack
int top; // variable to mark the top index of stack.