1. 程式人生 > >memcpy實現陣列的定長複製

memcpy實現陣列的定長複製

分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow

也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!

               
memcpy原型:extern void *memcpy(void *dest, void *src, unsigned int count); 用法:#include <string.h> 
功能:由src所指記憶體區域複製count個位元組到dest所指記憶體區域。 說明:src和dest所指記憶體區域不能重疊,函式返回指向dest的指標。 注意:與strcpy相比,memcpy並不是遇到'\0'就結束,而是一定會拷貝完n個位元組。  #include <stdio.h>   #include <string.h>   int main(int argc, char* argv[])  {   char *s="Golden Global View";   char d[20];    memcpy
(d,s,strlen(s));   d[strlen(s)]='\0';   printf("%s",d);   getchar();   return 0;  }//擷取view #include <string.h>    int main(int argc, char* argv[])  {   char *s="Golden Global View";   char d[20];   memcpy(d,s+14
,4);   //memcpy(d,s+14*sizeof(char),4*sizeof(char));也可   d[4]='\0';   printf("%s",d);   getchar();   return 0;  } //初始化陣列   char msg[10]; memcpy(msg,0,sizeof(msg));


           

給我老師的人工智慧教程打call!http://blog.csdn.net/jiangjunshow

這裡寫圖片描述