Hi,
I have a question regarding struct when making Table eg.
typedef struct AB
{
X a; //This is also an list
Y b; // This is also an list
Z z; // This is also an list
} AB_Table;
Here this structure contain three more structure which has type X/Y/Z.
This table is variable table .
My problem is that if first time i allocate the memory which is entered by
first user.
but after this if second user also want to append some more entry then this
will append with next memory allocation .
In my case memory it is going to overwrite second time when second user is
putting his entry.
Could you tell me what would be the logic of dyanimic memory allocation
scheme.
so that if more user comes memory will append with end of previous allocated
entry and no overwrite of memory will happen.
TIA
Ravi
[Non-text portions of this message have been removed]