On 9/14/07, Fabrizio Caruso <caruso at dm.unipi.it> wrote:
> I would like to read and write strings into such files.
>
> I can open for writing a file as a stream by
> "f : openr(<path>)"
>
> I can read it by
> "readline(f)"
To write to a file you need to open it with openw. To append stuff to
a file you need to open it with opena. To write stuff to a file use
printf.
--
Andrej