我以前做过一个模拟密码*输入的功能,不过现在忘记了
#include #include#include #include int main(void){ char c; while((c = getch()) != '\r'){ //do something printf("You input %c\n",c); } getchar(); getchar(); return 0;}