Hello,
I have a problem using files with gpc:
In Turbo Pascal I usually use the following:
var f:text;
begin assign(f,'filename'); reset(f); ... close(f);
But this doesn't work with gpc !!
I tryed:
reset(f,'filename');
This time it also compiled OK, but gives a runtime error !!
Please HELP me !
Best regards
Mauro Ottaviani