//获取字符串的长度
int getStringLength(char *p){
int length = 0;
while(*p){//由于字符串都是以'\0'结尾的,故当循环到字符串结尾时为假
p++;//地址自增
length++;//长度自增
}
return length;
}
//字符串的拼接
void stringConnection(char *p1, char *p2){
while(*p1){
p1++;//将p1移动到结尾
}
while(*p2){
*p1 = *p2;//然后把p2所指向的内容赋值给p1
p1++;
p2++;
}
}