使用strcmp()函数比较字符串

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

#include 
#include 

int main(){
  char str1[80], str2[80];
  int x;
  
  for(;;){
    puts("\n\nInput the first string, a blank to exit: ");
    gets(str1);
    if(strlen(str1) == 0){
      break;
    }
    puts("\nInput the second string: ");
    gets(str2);
    // 比较输入的两个字符串并显示结果
    x = strcmp(str1, str2);
    printf("\nstrcmp(%s, %s) returns %d", str1, str2, x); 
  }
  return 0;
}


转载于:https://my.oschina.net/u/241930/blog/521397

你可能感兴趣的:(使用strcmp()函数比较字符串)