6-17 使用函数实现字符串部分复制 (20 分)
6-17 使用函数实现字符串部分复制 (20 分)本题要求编写函数,将输入字符串t中从第m个字符开始的全部字符复制到字符串s中。函数接口定义:void strmcpy( char *t, int m, char *s );裁判测试程序样例:#include <stdio.h>#define MAXN 20void strmcpy( char *t, int m, ch...
原创
2019-05-28 19:10:05 ·
8075 阅读 ·
7 评论