Skip to content
Snippets Groups Projects

Resolve "Add pop function"

Merged ines.maya requested to merge 6-add-pop-function into main
2 unresolved threads
3 files
+ 21
3
Compare changes
  • Side-by-side
  • Inline
Files
3
main.c 0 → 100644
+ 10
0
#include "stack.h"
int main(){
stack s;
int value = 0;
stack_init(&s);
// stack_is_empty(stack s)
stack_peek(s, &value);
stack_pop(&s, &value);
}
\ No newline at end of file
Loading