C++字符问题,高手帮忙啊
#include<iostream>
using namespace std;
int func(char*pc)
{char*pt=pc;
while(*pt!='\n')pt++;
return(pt-pc);
}
void main()
{cout<<func("***********")<<endl;
}解释下结果啊~不明白
参考答案:除非这样
while (*pt != '\0') pt++;
得出的是参数pc的串长
如果像你那样写,结果是未定的,早已出界了