Quote Originally Posted by Moore
does anyone know if its possible to have an an array of structures in XDR format.
I don't think C supports that!
XDR is just a descriptive languages that describes data structures.

To use variable-length arrays in C, you must use malloc and free, and realloc in some cases.