Código
void getRangedSimStr(char* vec,char message[],char eMessage[],int minChars, int maxChars) { char palabra[1000]; { } }
Al momento de ser ejecutada en un bucle for de 3 iteraciones y guardado el string en una matriz con este codigo:
Código
char matriz[CANT][CHARS]; char primeraLetra; for(int i = 0; i< CANT; i++) { getRangedSimStr(matriz[i],"","Nombre invalido, reingrese: ",1,49); strlwr(matriz[i]); primeraLetra = matriz[i][0]; matriz[i][0] = primeraLetra; } for(int i = 0; i < CANT; i++) { }
Si yo escribo "SPORE ES BUENO" el bucle for no me pide la segunda y la tercera vez que ingrese string. Muestra la matriz con SPORE en indice 0, ES en el indice 1 y BUENO en el indice 2.
Miren: