In article <202 at sabin.UUCP> bjm at sabin.UUCP (Brendan J. McMahon) writes: >How do you initialize memory malloced for a structure without using calloc, >and without initilizing each structure element explicitly? Copy a preinitialized (static) structure onto the freshly allocated one. In modern C this can be done with a single assignment expression.