/= %= <<= >>= &= |= ^=

This commit is contained in:
2026-02-13 20:02:36 -05:00
parent 1dd755ffcb
commit c0afec233b
2 changed files with 69 additions and 4 deletions

26
test.c
View File

@@ -1,8 +1,26 @@
int main() {
int tomas = 1;
int jefferson = 3;
tomas *= jefferson;
int tomas = 8;
tomas /= 2;
tomas *= 3;
tomas %= 7;
tomas <<= 7;
tomas >>= 1;
tomas += 31;
tomas &= 21;
tomas |= 3;
tomas |= 303;
tomas ^= 23;
tomas ^= 27;
tomas &= 302;
tomas ^= 392;
int jefferson;
jefferson = 3 + tomas / (~3 - 90);
jefferson *= tomas;
return tomas * jefferson;
int three = tomas | jefferson;
return three;
}