Skip to content
Snippets Groups Projects

Radhwan.hassine master patch 03421

2 files
+ 3
2
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 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