用指针和数组实现字符串复制

/**************** 用指针和数组实现字符串复制 ****************/ #include<stdio.h> #define N 80 void MyStrcpy(char dstStr[],char srcStr[])        //使用字符串数组作为函数参数复制字符串 {     int i = 0;     while(srcStr[i]!= '\0')   
相关文章
相关标签/搜索