getpass的使用

1 int main(int arg, char *args[])
2 {
3 
4     char* s=getpass("please input:");   
5     printf("%s
",s);
6 
7     return 0;
8 }

输入字符不在屏幕上显示

原文地址:https://www.cnblogs.com/leejxyz/p/5688848.html