Hi..

Heres an example of a code:

Code:
char data[128] = "here is some text";
char info[128] = " and another text..";
char *p1, p2;

p1 = data;
p1 += 5;
now i want to copy info to p1 so I would get string with "is some text and another text..";

What would be the proper way to do that?

Thanks a lot for your help guys