window 还是linux中console 都有可能会用到输入密码的功能。但是我们常用的函数均是回显的,如何实现不回显呢,下面分两个平台来介绍。

window

#include <stdio.h>
#include <conio.h> // 此头文件非标,所以只能在windows中用。
char passwd[64]="";
void getPasswd(const char *prompt)
{
    char c;

    int i = 0;
    printf("%s",prompt);
    while ((c=getch()) != '\r')//getch()获取键盘数据不回显
    {
        passwd[i++] = c;
        putchar('*');
    }
    passwd[i] = '\0';
    printf("\n");
}

int main()
{
    getPasswd("#");
    printf("passwd = %s\n",passwd);
    return 0;
}

linux

[root@localhost opt]# gcc main.c
main.c:2:60: error: conio.h: No such file or directory

#include <stdio.h>
char passwd[64]="";
void getPasswd(const char *prompt)
{
    char c;

    int i = 0;
    printf("%s",prompt);
    system("stty -echo");  //可以使用命令,关闭输入回显
    while ((c=getchar()) != '\n')
    {
        passwd[i++] = c;
    }
    passwd[i] = '\0';
    system("stty echo"); //打开输入回显
    putchar(10);
}

int main()
{
    getPasswd("#");
    printf("passwd = %s\n",passwd);
    return 0;
}
Logo

更多推荐