char ch=\'A\';
char *p;
cout << ch << endl;
p= &ch;
cout << (int)p << endl;
*p=\'B\';
cout << *p << endl;
cout << (int)p << endl;
이거대로해봐..난 에러안남.
char *p;
cout << ch << endl;
p= &ch;
cout << (int)p << endl;
*p=\'B\';
cout << *p << endl;
cout << (int)p << endl;
이거대로해봐..난 에러안남.
ㄳㄳ