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

Update cours_9.md

parent 3229d576
No related branches found
No related tags found
1 merge request!57Update cours_9.md
......@@ -327,8 +327,8 @@ int stack_pop(stack *s) {
. . .
```C
int stack_peek(stack *s) {
return s->data[s->top];
int stack_peek(stack s) {
return s.data[s.top];
}
```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment