// 你试试这个程序,你输入 helloworld 200 遍 你看看内存里放了些什么?你再看看输出了多少。
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
char * pChar = new char;
cin>>pChar;
cout<<pChar;
cout<<pChar[0]<<endl;
//
cout<<pChar[1]<<endl;
delete pChar;
system("pause");
return 0;
}