Skip to content
Snippets Groups Projects
Commit fc6a3724 authored by paul.albuquer's avatar paul.albuquer
Browse files

Update cours_10.md

parent 521754d4
Branches
No related tags found
No related merge requests found
Pipeline #36408 passed
......@@ -690,7 +690,7 @@ Caractère lu Pile opérandes
. . .
```C
bool evaluate(char *postfix, double *val) { // init stack
double evaluate(char *postfix) { // init stack
for (size_t i = 0; i < strlen(postfix); ++i) {
if (is_operand(postfix[i])) {
stack_push(&s, postfix[i]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment