[comp.lang.c] Writing linked lists to a file

gordon@osiris.cso.uiuc.edu (John Gordon) (01/23/91)

	If you don't mind the data file being in binary format, you might try
something like this:

	for(node = head; node; node++)
          fwrite(node, sizeof(node), 1, fileptr);

	However, you will probably have a problem writing the pointers to a
file, because when you load the nodes back in from disk, they will probably
not be in the same address as before.


---
John Gordon
Internet: gordon@osiris.cso.uiuc.edu        #include <disclaimer.h>
          gordon@cerl.cecer.army.mil       #include <clever_saying.h>