《从零开始的C语言生活》综合使用字符串函数

#include <stdio.h>
#include <string.h> //字符串函数所需要的文件引入

int main()
{
    char password[7]="secret";
    char userInput[81];
    printf("Input password:");
    scanf("%s",userInput); 
    if(!strcmp(password,userInput)){//如果一样返回0,所以这里用非来满足条件 比较str1 str2的字符串大小,str1大就返回正值,str1小返回负值,相同返回0值
        printf("Correct!");
    }
    else if(strlen(password)>strlen(userInput)){ //strlen 用来获取字符串长度的函数
        printf("userinput<password!");
    }
    else printf("user input > password");
}

 

RIPRO主题是一个优秀的主题,极致后台体验,无插件,集成会员系统
天云网络培训 » 《从零开始的C语言生活》综合使用字符串函数

天云安全,多年安全积累,值得信赖

立即查看 了解详情