畅思笔录

 

2010年10月29日

memmove()函数介绍

摘要: memmove  原型:extern void *memmove(void *dest, const void *src, unsigned int count);   用法:#include <string.h>   功能:由src所指内存区域复制count个字节到dest所指内存区域。   说明:src和dest所指内存区域可以重叠,但复制后dest内容会被更改。函数返回指向des... 阅读全文

posted @ 2010-10-29 15:43 畅思笔录 阅读(15706) 评论(0) 推荐(1)

导航