Skip to content
Snippets Groups Projects

Radhwan.hassine master patch 03421

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