标签:rcm bsp 输出 null font strncat str1 判断字符串 不同
特别的,若两字符串相等,返回值为0
1 #include <stdio.h> 2 #include <string.h> 3 int main ( ) 4 { 5 char *str1="abcd",*str2="abbfc"; 6 int p; 7 p=strncmp(str2,str1,3); 8 if( p>0) 9 { 10 printf("%d\n",p); 11 } 12 else 13 { 14 printf("%d\n",-p); 15 } 16 17 return 0; 18 }
strstr(str1,str2) 函数用于判断字符串str2是否是str1的子串。
如果是,则该函数返回 str1字符串从 str2第一次出现的位置开始到 str1结尾的字符串;否则,返回NULL
剩余的函数不展开描述,附表如下:
标签:rcm bsp 输出 null font strncat str1 判断字符串 不同
原文地址:https://www.cnblogs.com/2020cs/p/12254112.html