I don't speak english very well, but I'll try... :)
I have this struct:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
typedefchar String[40];
typedefstruct
{
int codigo;
String titulo;
String autor;
String editora;
float preco;
int qtdeEstoque;
} LIVRO;
struct lista
{
LIVRO dados;
struct lista *proximo;
}*inicio;
and I need to save all the content in a file.txt...
and when I start the program I need to load all to a linked list, before I use the program I'll save the new file.txt...