i want this password code in star form. anyone can help.
/*password*/
LOGINP:
clrscr();
printf("\n\n\n\n\nUsername: its_vishuuuu");
gotoxy(x,y);
printf("Login\n\n\t\t\tPassword: ");
fflush(stdin);//covert char to int screen
gets(pass1);//enter string
check=strcmp(pass1,password1);//check password
if(check!=0)
{
clrscr();
goto LOGINP;
}