Skip to content
Snippets Groups Projects

Update cours_11.md (Fonction void qui retournait un int)

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