The difference is that const char * is a pointer to a const char, ... printf(" %c\n",*p); return 0; } int main() { char * const p; ...
確定! 回上一頁