What is overlapping in memmove() definition?

Viewed 7237

I was reading from a c++ reference about memcpyand memmove and they seems to be doing the same thing except that memmove has a specific think called (allowing the destination and source to overlap).

What is overlapping and when that happens?

1 Answers
Related