本题要求编写函数,将输入字符串t中从第m个字符开始的全部字符复制到字符串s中。
函数接口定义:
void strmcpy( char *t, int m, char *s );
函数strmcpy
将输入字符串char *t
中从第m
个字符开始的全部字符复制到字符串char *s
中。若m
超过输入字符串的长度,则结果字符串应为空串。
裁判测试程序样例:
#include <stdio.h>
#define MAXN 20
void 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;
}
/* 你的代码将被嵌在这里 */
输入样例:
7
happy new year
输出样例:
new year
void strmcpy( char *t, int m, char *s )
{
int i,j=0,count=0;
char *q=t;
while(*q!='\0')
{
q++;
count++;/*计算数组也就是*t指向的数组的元素个数*/
}
for(i=m-1;i<count+1;i++)/*这里的count+1 的意思是数组下标从0开始,所以个数要加 1 */
{
s[j]=t[i];
j++;
}
}