题目
本题要求编写函数,将输入字符串t中从第m个字符开始的全部字符复制到字符串s
中。
函数接口定义:
void strmcpy( char *t, int m, char *s );
函数strmcpy
将输入字符串char *t
中从第m
个字符开始的全部字符复制到字符串char *s
中。若m
超过输入字符串的长度,则结果字符串应为空串。
裁判测试程序样例:
#include #define MAXN 20void strmcpy( char *t, int m, char *s );void ReadString( char s[] ); /* 由裁判实现,略去不表 */int main(){char t[MAXN], s[MAXN];int m;scanf("%d\n", &m);ReadString(t);strmcpy( t, m, s );printf("%s\n", s);return 0;}/* 你的代码将被嵌在这里 */
输入样例:
7happy new year
输出样例:
new year
代码
解释:* t代表指针指向数字的第一个位置(t[0]),t=t+m-1,就是将指针移到数组的第m个位置,然后遍历赋值,
注意最后一次循环:t为’\0’并没有进循环,就没有给s赋值,此时s的指向为空,所以最后要补充*s=‘\0’,这个’\0’是结束标志。
void strmcpy(char *t, int m, char *s) {t=t+m-1;while(*t!='\0'){ *s=*t;//赋值s++;//指针后移t++;}*s='\0';}