while(1)
{
char temp;
temp=*strDest=*strSrc;
strDest++;
strSrc++;
if(temp=='/0')
break;
}
或者说
while(*strSrc!='/0')
{
*strDest=*strStr;
strDest++;
strStr++;
}
*strDest=*strSrc;
while ((*strDest++=*strSrc++)!='/0'); 分解成单条语句
最新推荐文章于 2022-09-27 12:24:35 发布