美文网首页
常用的字符串函数

常用的字符串函数

作者: 道别1999 | 来源:发表于2019-08-03 16:50 被阅读0次
    #include<stdio.h>
    #include<string.h>//通常放在这个头文件
    int main(void)
    {
         char str1[]="Hello ";
         char str2[]="World";
         char str3[]="World";
    
         //strlen函数
         printf("str1的长度为:");
         printf("%d",strlen(str1));
         printf("\n"); 
         //strcat函数
         strcat(str1,str2);
         printf("拼接后str1为:");
         printf("%s",str1);
         printf("\n");
         printf("str2为:");
         printf("%s",str2);
         printf("\n");
         //strcmp函数
         if(!strcmp(str2,str3))
             printf("str2和str3一样");
         
    
         getchar();
         return 0;
         
    }
    

    相关文章

      网友评论

          本文标题:常用的字符串函数

          本文链接:https://www.haomeiwen.com/subject/iuojdctx.html