mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 09:22:22 -07:00
12 lines
115 B
C
12 lines
115 B
C
int main() {
|
|
int x = 15;
|
|
int y = 4;
|
|
x = x & (~y);
|
|
if (x > 0) {
|
|
x = 123;
|
|
} else {
|
|
x = 321;
|
|
}
|
|
return 0;
|
|
}
|