Skip to content
Snippets Groups Projects
Commit b3b266c5 authored by yassin.elhakoun's avatar yassin.elhakoun
Browse files

Update file cours_11.md

parent 42075900
No related branches found
No related tags found
1 merge request!50Update cours_11.md (Fonction void qui retournait un int)
This commit is part of merge request !50. Comments created here will be created in the context of that merge request.
......@@ -221,7 +221,7 @@ int stack_pop(stack *s, int *val) {
element *tmp = *s;
*s = (*s)->next;
free(tmp);
return val;
return *val;
}
```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment