Skip to content
Snippets Groups Projects
Commit 1efb686f authored by orestis.malaspin's avatar orestis.malaspin
Browse files

Merge branch 'master' into 'master'

Update cours_11.md

See merge request algorithmique/cours!61
parents c53279be ed572052
No related branches found
No related tags found
No related merge requests found
......@@ -247,7 +247,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