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

4 lines
50 B
C

int main() {
return sizeof(const int) == 4;
}