摘要: 函数原型void *memmove( void* dest, const void* src,size_t count );功能由st2指内存区域复制n个字节到st1所指内存区域 (抄至百度百科)返回值函数返回st1值包含头文件string.h函数的使用#include<stdio.h>#include<string.h>int main(void){ char str[12]; memmove(str,"hello world",12); printf("%s\n",str); return 0;}函数的实现void *memm 阅读全文
posted @ 2013-03-31 10:08 Sinnerse 阅读(136) 评论(0) 推荐(0) 编辑