Allora son messo così
cosa devo aggiungere per leggere dal file?codice:TYPE worder : RECORD parolaimpiccato:string; VAR fp:file of worder; { variabile di tipo file } ... begin assign(fp,'words.dat'); { apro il file } reset(fp); { apro in lettura } close(fp); { chiusura flusso } end; ...

Rispondi quotando