Skip to content
Snippets Groups Projects

Update cours_9.md

1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -327,7 +327,7 @@ int stack_pop(stack *s) {
. . .
```C
int stack_peek(stack *s) {
int stack_peek(stack s) {
return s->data[s->top];
}
```
Loading