扫二维码与项目经理沟通
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流
#include
#include
void mymemcpy(char *str1, char *str2, int k)
{
int i;
for (i = 0; i < k; i++,str1++,str2++)
{
*str1 = *str2;
}
}
int main()
{
int k = 3;
char str1[]=" ";
char* str2 = "ancde";
mymemcpy(str1, str2, k);
printf("%s", str1);
system("pause");
return 0;
}
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流