Question

While reading about memmove I read that it can handle MEMORY OVERLAPSbut I am unable to get how a memmory overlap can occur between two strings and how can this function still copy the block of memory correctly.

Was it helpful?

Solution

"Memory overlap" does not occur by itself. It is you who can supply the memmove function with memory regions that overlap. Take two pointers into the same array and you can easily end up with overlapping memory regions.

Of course, you can also easily create overlapping objects through unions.

It is not clear what you mean by the second part of the question ("how can this function still copy the block of memory correctly"). Where do you see the problem here?

OTHER TIPS

 memmove(p+1, p, 42);

Which requires moving the bytes starting at the end. Memcpy() makes a mess of it.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top