Skip to content
Snippets Groups Projects
Verified Commit 5605029f authored by orestis.malaspin's avatar orestis.malaspin
Browse files

Added stack data structure to allow students to do actual work.

parent 714e23f4
Branches
Tags
1 merge request!2Resolve "Add stack data stucture"
stack.h 0 → 100644
#ifndef _STACK_H_
#define _STACK_H_
typedef struct _stack {
int *data;
int capacity;
int top;
} stack;
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment