Files
cs420/examples/unary.c
2020-04-11 12:20:53 +09:00

5 lines
72 B
C

int main() {
unsigned char temp = 0x00L;
return 1 > (--temp);
}