Skip to content

Instantly share code, notes, and snippets.

@Hemant-Parihar
Hemant-Parihar / arrayStack
Last active February 19, 2023 16:18
Array Implementation of STACK (abstract data type) in C programming.
/* Array implementation of the stack */
#include<stdio.h>
#include<stdlib.h>
#define MAX_STACK_SIZE 5
typedef int boolean;
#define TRUE 1
#define FALSE 0
struct arrayStack {