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

Merge branch 'radhwan.hassine-master-patch-53145' into 'master'

Update cours_9.md

See merge request algorithmique/cours!57
parents 0b62206a 9c9cc83e
No related branches found
No related tags found
1 merge request!57Update cours_9.md
Pipeline #27300 passed
......@@ -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.
Finish editing this message first!
Please register or to comment