domingo, 4 de septiembre de 2011

PASSWORD LENGUAJE C

CASTILLO SUASTE ISRAEL
SEC.1IM22
TECNOLOGIA DE LA INFORMATICA

int leeContrasenya(char *pass, int n)
{
int i=0, band=1;
char c;
char *x;

x = (char *)malloc(sizeof(char)*n);
do {
c = getch(); //no imprime en pantalla el car leido
printf("*");
if(i<n) x =c;
} while(c!='\n'); // no me acuerdo si es \n o \r 10 o 13
printf("\n");
if(i>=n) band=0;
else {
x= '\0'
band = !strcmp(pass, x); //no recuerdo bien si es negado o no
}
return band;
}

No hay comentarios:

Publicar un comentario