This is a Copy Constructor function, using stack
when i run this function,(other functions run okay)the program stop working.
I revise the function several times and i didn't get anything
So i hope some one can help me.
First this is the function for stack
1 2 3 4 5 6 7 8 9 10 11 12 13
struct NodeLinked
{
int info;
NodeLinked *link;
};
class MySatck
{
int Max,st;
int *List;
NodeLinked *StackTop ;
};