Operations support with temp expressions values in stack

This commit is contained in:
Clément Grennerat
2026-03-04 11:56:25 +01:00
parent 906759a515
commit 7929b59b60
6 changed files with 82 additions and 23 deletions
+7
View File
@@ -0,0 +1,7 @@
int main() {
int x;
int y;
x = 42;
y = 8;
return (x + y) * (x - y) / (x * y);
}