c语言中memcpy函数_带有示例的C中的memcpy()函数
c語言中memcpy函數(shù)
memcpy()函數(shù) (memcpy() function)
memcpy() is a library function, which is declared in the “string.h” header file - it is used to copy a block of memory from one location to another (it can also be considered as to copy a string to another).
memcpy()是一個(gè)庫(kù)函數(shù),在“ string.h”頭文件中聲明-它用于將一個(gè)內(nèi)存塊從一個(gè)位置復(fù)制到另一個(gè)位置(也可以視為將字符串復(fù)制到另一個(gè)位置)。
Syntax of memcpy():
memcpy()的語法:
memcpy(void*str1, const void* str2, size_t n);It copies n bytes of str2 to str1.
它將str2的 n個(gè)字節(jié)復(fù)制到str1中 。
Example 1) Copying a string to another (all bytes of a string to another)
示例1)將一個(gè)字符串復(fù)制到另一個(gè)(字符串的所有字節(jié)到另一個(gè))
#include <stdio.h> #include <string.h> #define MAX_CHAR 50int main(void) {char str1[MAX_CHAR] = "Hello World!";char str2[MAX_CHAR] = "Nothing is impossible";printf("Before copying...\n");printf("str1: %s\n",str1);printf("str2: %s\n",str2);//copying all bytes of str2 to str1memcpy(str1, str2, strlen(str2));printf("After copying...\n");printf("str1: %s\n", str1);printf("str2: %s\n", str2);return 0; }Output
輸出量
Before copying... str1: Hello World! str2: Nothing is impossible After copying... str1: Nothing is impossible str2: Nothing is impossible .minHeight{min-height: 250px;}@media (min-width: 1025px){.minHeight{min-height: 90px;}} .minHeight{min-height: 250px;}@media (min-width: 1025px){.minHeight{min-height: 90px;}}Example 2) Copying some of the bytes from a byte array to another array
示例2)將某些字節(jié)從一個(gè)字節(jié)數(shù)組復(fù)制到另一個(gè)數(shù)組
#include <stdio.h> #include <string.h> #define MAXLEN 11//function to print array void printArray(unsigned char str[], int length){int i;for(i=0; i<length;i++)printf("%02X ", str[i]);printf("\n"); }int main(void) {unsigned char arr1[MAXLEN] = {0x10, 0x20, 0x30, 0x40, 0x50, 0x60, 0x70, 0x80, 0x90, 0x95};unsigned char arr2[MAXLEN] = {0};printf("Before copying...\n");printf("arr1: "); printArray(arr1, strlen(arr1));printf("arr2: "); printArray(arr2, strlen(arr2));//copying 5 bytes of arr1 to arr2memcpy(arr2, arr1, 5);printf("After copying...\n");printf("arr1: "); printArray(arr1, strlen(arr1));printf("arr2: "); printArray(arr2, strlen(arr2));return 0; }Output
輸出量
Before copying... arr1: 10 20 30 40 50 60 70 80 90 95 arr2: After copying... arr1: 10 20 30 40 50 60 70 80 90 95 arr2: 10 20 30 40 50翻譯自: https://www.includehelp.com/c-programs/memcpy-function-in-c-with-example.aspx
c語言中memcpy函數(shù)
創(chuàng)作挑戰(zhàn)賽新人創(chuàng)作獎(jiǎng)勵(lì)來咯,堅(jiān)持創(chuàng)作打卡瓜分現(xiàn)金大獎(jiǎng)總結(jié)
以上是生活随笔為你收集整理的c语言中memcpy函数_带有示例的C中的memcpy()函数的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: dbms数据库管理系统_数据库管理系统(
- 下一篇: ruby hash方法_Hash.fet