so i have an initial pointer (char*) to a block of memory, now i want to add to it another block of memory but without erasing its existing content. (like in the operation ptr1 += ptr2; where type of ptr1 and ptr2 is char*)
How can i do it ?
thnks