作用是移動一塊位元組
基本介紹
- 外文名:movemem
- 功 能:移動一塊位元組
- 用 法: void movemem
- 屬於:函式
函式名: movemem
功 能: 移動一塊位元組
用 法: void movemem(void *source, void *destin, unsigned len);
程式例:
#include <mem.h>
#include <alloc.h>
#include <stdio.h>
#include <string.h>
int main(void)
{
char *source = "Borland International";
char *destination;
int length;
length = strlen(source);
destination = malloc(length + 1);
movmem(source,destination,length);
printf("%s\n",destination);
return 0;
}