char* const b=&c1; *b='e'; b=&c2;//error: assignment of read-only variable 'b' printf("b is %c\n",*b); const char* const c=&c1;
確定! 回上一頁