It's as easy as:
Code:
memcpy(&Tree2,&Tree1,sizeof(Tree1));


Alternatively you can of course copy it variable by variable. Be carefull, the string won't be copied. Just the pointer to the string will be copied.


Always learn from history, to be sure you make the same mistakes again...