實現Strcpy(字符串拷貝)

字符串拷貝(不考慮內存重疊) char* myStrcpy(char* destStr,const char* str) { //字符串有有效性檢查,assert斷言返回false則停止程序運行 assert(destStr != NULL || str != NULL); char* temp = destStr; //while((*destStr++ = *str++) !='\0'
相關文章
相關標籤/搜索