Logical operators and equality/inequality operators

This commit is contained in:
2026-02-02 20:57:00 -05:00
parent df6c897fde
commit e08bb2ff95
3 changed files with 189 additions and 49 deletions

2
test.c
View File

@@ -1,4 +1,4 @@
int main() {
return !(4 + -4) + 6 / (2 + 2) * -4 * ~4 / 9 + -(4 / (5 * (32 / 2) + ~1) - (400 / 90 + 1) - -~((5 / 4) * (2 + 3) / -9));
return 1 || 0 && 2;
}