mirror of
https://github.com/kmc7468/cs420.git
synced 2025-12-15 15:08:52 +00:00
6 lines
112 B
C
6 lines
112 B
C
int main() {
|
|
short temp = 0;
|
|
unsigned int temp2 = 4294967163;
|
|
return (char)(temp ^ temp2) == 123;
|
|
}
|