C/Visual C - warning C4700: local variable 'datos_libro' used w

 
Vista:

warning C4700: local variable 'datos_libro' used w

Publicado por Cris56 (44 intervenciones) el 28/01/2006 14:52:13
hola muy buenas, he terminado un proyecto que es para el luens 30 enero y em salen 3 warnings, los 3 iguales pero de diferentes datos:
warning C4700: local variable 'datos_libro' used without having been initialized

void cargarficherol(char * rutal, listal *lista)
{
FILE *fl;
libro aux;
libro datos_libro;
fl=fopen(rutal, "rb");
fread(&aux, sizeof(libro),1,fl);
while (!feof(fl))
{
insertarlibro(lista, datos_libro);
fread(&aux, sizeof(libro),1,fl);
}
fclose(fl);
}
REspondan lo antes posible es muy urgente
[email protected]
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder