c语言中,scanf可以隐藏键入的数据吗?

2024-12-18 00:21:39
推荐回答(2个)
回答1:

我以前做过一个模拟密码*输入的功能,不过现在忘记了

回答2:

#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;
}