Skip to content
Snippets Groups Projects

Update cours_9.md

1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
+ 2
2
@@ -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];
}
```
Loading