/* const.c */ #include int main(void) { const int a=1; a++; printf("aの値は%dです。\n",a); return 0; }