函数名:getpass
功 能: 读一个口令
用 法: char *getpass(char *prompt);
程序例:
#include <conio.h>
int main(void)
{
char *password;
password = getpass("Input a password:");
cprintf("The password is: %s
",
password);
return 0;
}
函数名:getpass
功 能: 读一个口令
用 法: char *getpass(char *prompt);
程序例:
#include <conio.h>
int main(void)
{
char *password;
password = getpass("Input a password:");
cprintf("The password is: %s
",
password);
return 0;
}