strcpy 复制字符串b到a(重新申请内存地址)
strcpy(a, b);
strcat 合并字符串b到a(追加)
strcat(a, b);
strlen 查看字符串长度
strlen("hello world");