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

4 lines
52 B
C

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