More binary operators

This commit is contained in:
2026-02-11 16:56:47 -05:00
parent e0fb2c37fa
commit 10023cae86
2 changed files with 171 additions and 5 deletions

2
test.c
View File

@@ -1,4 +1,4 @@
int main() {
return 3 % 2 / 29 % 23 + 9 % 2 % 3 % 4 % 5;
return 4 ^ 2 | 34 & 20 | (3 & 4) & ~1;
}