@vishal-pysGmK
•
Oct 12, 2024
Oct 12, 2024
1.2K
C Program : Password Input Problem
while((c=getch())!=13)
{
pass[z++]=c;
printf("%c",'*');
}
I used this while loop to take the input of the password. Everything works fine until no "wrong" key is pressed.
the problem is, suppose,...