implementation for accounts records stored in dynamic memory

typedef struct record

{

int kind;

int info;

struct record *sublist;

struct record *link;

}listrecord, *liststructurepointer;