C语言比较字符串

#include <stdio.h>

int main() {
   char s1[] = "advise";     
   char s2[] = "advice";

   int n = 0;
   unsigned short flag = 1; 

   while (s1[n] != '/0') {
      if(s1[n] != s2[n]) {
         flag = 0;
         break;
      }
      n++;
   }

   if(flag == 1) {
      printf("%s and %s are identical/n", s1, s2);
   } else {
      printf("%s and %s are NOT identical/n", s1, s2);
   }

   return 0;
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/265351.html

(0)
上一篇 2022年6月7日
下一篇 2022年6月7日

相关推荐

发表回复

登录后才能评论