本文共 140 字,大约阅读时间需要 1 分钟。
void strCpy(char *p1,char *p2){ while (((*(p1++))=(*(p2++))))) { } }
转载于:https://blog.51cto.com/9178487/1531796