Home > Electronics Tutorials > C Language Tutorial > string.h - memmove

C Language Programming Library Reference Guide

string.h - memmove

Declaration: void *memmove(void *str1, const void *str2, size_t n); Copies n characters from str2 to str1. If str1 and str2 overlap the information is first completely read from str1 and then written to str2 so that the characters are copied correctly.

Returns the argument str1.

Note: To report broken links or to submit your projects, tutorials please email to Webmaster

Discover

     more......