Compound assignment (+=, -=, *=)

This commit is contained in:
2026-02-12 16:53:01 -05:00
parent 10023cae86
commit 1dd755ffcb
2 changed files with 116 additions and 9 deletions

6
test.c
View File

@@ -1,4 +1,8 @@
int main() {
return 4 ^ 2 | 34 & 20 | (3 & 4) & ~1;
int tomas = 1;
int jefferson = 3;
tomas *= jefferson;
jefferson *= tomas;
return tomas * jefferson;
}