Skip to content
Snippets Groups Projects

Resolve "Add stack data stucture"

Merged orestis.malaspin requested to merge 2-add-stack-data-stucture into main
1 file
+ 10
0
Compare changes
  • Side-by-side
  • Inline
stack.h 0 → 100644
+ 10
0
#ifndef _STACK_H_
#define _STACK_H_
typedef struct _stack {
int *data;
int capacity;
int top;
} stack;
#endif
Loading