memove 这个函数怎么用
提示: 作者被禁止或删除 内容自动屏蔽
程序代码:#include <string.h>
#include <stdio.h>
int main(void)
{
char dest[] = "abcdefghijklmnopqrstuvwxyz0123456789";
char src[] = "******************************";
printf("destination prior to memmove: %s\n", dest);
memmove(dest, src, 26);
printf("destination after memmove: %s\n", dest);
return 0;
}
