ฟังก์ชัน memmove() ใช้เพื่อย้ายบล็อกหน่วยความจำทั้งหมดจากตำแหน่งหนึ่งไปยังอีกตำแหน่งหนึ่ง หนึ่งคือต้นทางและอีกอันหนึ่งคือปลายทางชี้โดยตัวชี้ ประกาศเป็นไฟล์ส่วนหัว “string.h” ในภาษา C
นี่คือไวยากรณ์ของ memmove() ในภาษา C
void *memmove(void *dest_str, const void *src_str, size_t number)
ที่นี่
dest_str − ตัวชี้ไปยังอาร์เรย์ปลายทาง
src_str − ชี้ไปที่อาร์เรย์ต้นทาง
หมายเลข − จำนวนไบต์ที่จะคัดลอกจากต้นทางไปยังปลายทาง
นี่คือตัวอย่าง memmove() ในภาษา C
ตัวอย่าง
#include <stdio.h> #include <string.h> int main () { char a[] = "Firststring"; const char b[] = "Secondstring"; memmove(a, b, 9); printf("New arrays : %s\t%s", a, b); return 0; }
ผลลัพธ์
New arrays : SecondstrngSecondstring
ในโปรแกรมข้างต้น อาร์เรย์ประเภทถ่านสองชุดถูกเตรียมใช้งานและฟังก์ชัน memmove() กำลังคัดลอกสตริงต้นทาง 'b' ไปยังสตริงปลายทาง 'a'
char a[] = "Firststring"; const char b[] = "Secondstring"; memmove(a, b, 9);