gderecho / stack

A very basic integer stack in C.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#stack

A very bland C implementation of a stack of integers.

Usage:

struct stack my_stack;
init_stack(&my_stack);
push(3, &my_stack);
printf("Let's pop the value now: %d\n", 
        pop(&my_stack));
free_stack_data(&my_stack);

About

A very basic integer stack in C.

License:GNU General Public License v3.0


Languages

Language:C 100.0%