当前位置: 技术问答>linux和unix
Linux下用c语言编写输入密码程序
来源: 互联网 发布时间:2017-01-24
本文导语: 怎么在linux下用c编写个输入密码的程序,而且是不能回显密码的那种程序!!!求指点啊!!! | 记得在windows下getch(); 在linux你可以写一个类似 #include #include #include namespace getch_name{ char getch(...
怎么在linux下用c编写个输入密码的程序,而且是不能回显密码的那种程序!!!求指点啊!!!
|
记得在windows下getch();
在linux你可以写一个类似
#include
#include
#include
namespace getch_name{
char getch(void)
{
char buf = 0;
struct termios old = {0};
if (tcgetattr(0, &old)
在linux你可以写一个类似
#include
#include
#include
namespace getch_name{
char getch(void)
{
char buf = 0;
struct termios old = {0};
if (tcgetattr(0, &old)