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