void main()
 {
  char ch=\'A\';
  char *p;
  cout << ch << endl;
  p= &ch;
  cout << p << endl;
  *p=\'B\';
  cout << *p << endl;
  cout << p << endl;  
}
출력하면 왜 한자기 사이에 껴있는데..
어떤거 고쳐야 하긔..ㅠㅠ?