模拟实现strcpy函数
Posted yishengpan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了模拟实现strcpy函数相关的知识,希望对你有一定的参考价值。
模拟实现strcpy函数
a、代码简练的
1 #include<stdio.h> 2 #include<assert.h> 3 4 //模拟实现 5 void my_strcpy(char* dest, const char* src) 6 { 7 assert(dest != NULL); 8 assert(src != NULL); 9 while (*dest++ = *src++) 10 { 11 ; 12 } 13 } 14 15 16 //打印数组 17 void Print(char* arr) 18 { 19 while (*arr != ‘