一、求字符串函数
1、strlen
size_t strlen(const char* str)
从str指向的位置开始,到'\0'结束
const:指针指向的内容不能被修改
二、长度不受限制的函数
1、字符串拷贝函数 strcpy
char* strcpy(char* strdestination, comst char* strsource)
2、字符串追加 strcat
char* strcat(char* destination, comst char* source)
3、字符串比较大小 strcmp
int strcmp(const char* str1, const char* str2)