Ask your own question, for FREE!
Computer Science 23 Online
OpenStudy (anonymous):

program to implement password in c languge e.g. enter password should like this password ****

OpenStudy (anonymous):

Dear friend i write this code for you i hope so it helps you in c language #include<stdio.h> main() { char ch,real[100]; int i=0; clrscr(); while(1) { ch=getch(); printf("%c",'*'); if(ch==0x0d) break; real[i++]=ch; } real[i]='\0'; printf("%s",real); getch(); }

OpenStudy (anonymous):

when you will press enter key the password input will stop and real password will store in real character array.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!