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

Update cours_10.md

parent ed572052
Branches master
No related tags found
No related merge requests found
Pipeline #27628 failed
......@@ -320,7 +320,7 @@ Caractère lu Pile opérandes
. . .
```C
bool evaluate(char *postfix, double *val) { // init stack
double evaluate(char *postfix, double *val) { // 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.
Finish editing this message first!
Please register or to comment