字符串函数笔记
//1.字符长度计算函数
char str[] = "a\0c\0d";
printf("%ld\n",strlen(str)); // 1 5 strlen() 碰到\0 就结束了.
printf(“%s”,str);
//2. 字符输出函数
char str2[] = "abcd\0efg";
puts(&str2[1]);
//3.字符连接函数
// 条件: oldstr > oldstr + newstr
char str3[100] = "heima";
char str4[] = "lisi\0zhangsan";
strcat(str3, str4);
printf("%s\n",str3);
//4.strcpy(oldstr,newstr) 字符串拷贝函数
条件: oldstr > newstr
//5.int a = strcmp(oldstr,newstr) 字符串比较函数
如果a > 0 则 oldstr > newstr
如果a < 0 则 oldstr < newstr
如果a = 0 则 oldstr = newstr |
|