char* p=”we are friends.”;
char* q=p;
while(q)
{
cout<<*q;
q++;
while(*q)
}你的想法没错但是while里面你放的是/0的地址,不是/0 所以错了