Skip to content
Snippets Groups Projects
Commit 441a3e63 authored by radhwan.hassine's avatar radhwan.hassine :meat_on_bone:
Browse files

Update cours_11.md

parent 3229d576
Branches
No related tags found
No related merge requests found
...@@ -221,7 +221,6 @@ void stack_pop(stack *s, int *val) { ...@@ -221,7 +221,6 @@ void stack_pop(stack *s, int *val) {
element *tmp = *s; element *tmp = *s;
*s = (*s)->next; *s = (*s)->next;
free(tmp); free(tmp);
return val;
} }
``` ```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment