再牛逼的梦想也抵不住傻逼似的坚持!   设为首页 - 加入收藏
您的当前位置:小鱼资料库 > 计算机 > C语言 > 正文

C库函数-strncmp()-C语言实例教程|

来源:网络 编辑:青釉 时间:2022-06-19

C库函数 - strncmp()

#include <stdio.h>

#include <string.h>



int main () {

   char str1[15];

   char str2[15];

   int ret;



   strcpy(str1, "abcdef");

   strcpy(str2, "ABCDEF");



   ret = strncmp(str1, str2, 4);



   if(ret < 0) {

      printf("str1 is less than str2");

   } else if(ret > 0) {

      printf("str2 is less than str1");

   } else {

      printf("str1 is equal to str2");

   }



   return(0);

}
标签:

小鱼资料库 www.xiaoyuzl.com

Copyright © 2020-2022 XIAOYUZL. All rights reserved. 冀ICP备2020029262号-2

声明:本站分享的文章、资源等均由网友上传,版权归原作者所有,只用于搜集整理。如有侵权,请您与站长联系,我们将及时处理!

Top