Re: Char* to Char*



"Jake Thompson" <readytoride39@xxxxxxxxxxx> wrote in message
news:1136569581.780724.149640@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
> What is the best way to copy a Char* to a Char*?

int main(void)
{
typedef char Char;
Char *a = 0;
Char *b = 0;
a = b;
return 0;
}

I've given a literal answer to your question.
I suspect you'll need to phrase it more specifically
to get the answer you really need.

-Mike



.



Relevant Pages