Does memmove use dynamic memory for its temporary array
问题 According to C11 N1570 standard draft: 7.24.2.2 "The memmove function": The memmove function copies n characters from the object pointed to by s2 into the object pointed to by s1 . Copying takes place as if the n characters from the object pointed to by s2 are first copied into a temporary array of n characters that does not overlap the objects pointed to by s1 and s2 , and then the n characters from the temporary array are copied into the object pointed to by s1 So if I choose to move a