Skip to content
Snippets Groups Projects

Update cours_11.md

1 file
+ 0
1
Compare changes
  • Side-by-side
  • Inline
+ 0
1
@@ -221,7 +221,6 @@ void stack_pop(stack *s, int *val) {
element *tmp = *s;
*s = (*s)->next;
free(tmp);
return val;
}
```
Loading