but, the code inside could be compiled,李大牙:)

来源: 2009-01-07 19:53:03 [博客] [旧帖] [给我悄悄话] 本文已被阅读:

int main(int argc, char* argv[])
{
char ch='f';
char const *pr=&ch;
ch='b';
pr=&ch;
cout
system("PAUSE");

return 0;
}

*****
note: I did change the value of the variable ch.