/* * constFold.c */ #include int main(){ // constFold.c int n; n = 24*25; printf("n: %d\n", n); return 0; }