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
No related tags found
1 merge request!62Radhwan.hassine master patch 03421
......@@ -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.
Please register or to comment