[comp.lang.pascal] I/O w/ complex ds inc. pointers

chem4m@jetson.uh.edu (08/07/90)

Is there any way to save datastructures that include pointers which aren't
sequential ie
   pointer = ^dfrgdfg;
   dfrgdfg = record
               crap:stuff;
               s = array [1..10] of pointer;
             end;

  without converting them to a name eq. saving in a different datastructure and
converting apon reloading.

File I/O and pointers don't mix.
Avijit Ghosh