Skip to content

Latest commit

 

History

11 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CStack

Stack implemented in C:

  1. Array implementation
  2. Linked List implementation

Get Started

Check stack.h for the methods available

// use stack_init to initialize a stack
Stack* stack = stack_init();

// to free the memory use
stack_deinit(stack);

Run example

# Array implementation
gcc example.c stack_array.c -o example && ./example
# Linked List implementation
gcc example.c stack_linked_list.c -o example && ./example

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages