Files
cs420/examples/c/integer_literal2.c
2020-04-23 23:07:23 +09:00

6 lines
125 B
C

int main() {
int temp = 0;
// `0xFFFFFFFF` is translated as `unsigned int` not `int`
return temp < 0xFFFFFFFF;
}