strcpy: copy t to s.
array subscript version.
strcpy:将t复制到s。
数组下标版本
函数接口定义:
void strcpy(char *const s, char *const t);
裁判测试程序样例:
#include<stdio.h>void strcpy(char *const s, char *const t);
char *alloc(int n);int main()
{char *from = alloc(1000);char *to = alloc(1000);while(~scanf("%s", from)) {strcpy(to, from);printf("%s\n", to);}return 0;
}
/* 请在这里填写答案 */
输入样例:
abc
结尾无空行
输出样例:
abc
结尾无空行
void strcpy(char *const s, char *const t){int i=0; while(t[i]!='\0'){
s[i]=t[i];i++;}s[i]='\0';
}