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

Update cours_11.md

parent 3229d576
No related branches found
No related tags found
No related merge requests found
Pipeline #27323 failed
......@@ -248,7 +248,8 @@ void stack_pop(stack *s, int *val) {
```C
void stack_destroy(stack *s) {
while (!stack_is_empty(*s)) {
int val = stack_pop(s);
int val;
stack_pop(s, &val);
}
}
```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment