赞
踩
编写自定义函数把一个字符串(不超80字符)的内容复制到另一个字符数组中。主函数输入一串字符,复制到另一个数组中输出。
- #include<stdio.h>
- int str_copy(char *d,char *s){
- //请在此输入你的代码
- }
- int main(){
- char pa[81];
- char pb[81];
- gets(pa);
- str_copy(pb,pa);
- printf("%s",pb);
- return 0;
- }
输入输出示例
输入 | 输出 | |
示例 1 | | |
- #include<stdio.h>
- int str_copy(char *d,char *s){
- while(*s!='\0')
- {
- *d=*s;
- *s++;
- *d++;
- }
- *d='\0';
- }
- int main(){
- char pa[81];
- char pb[81];
- gets(pa);
- str_copy(pb,pa);
- printf("%s",pb);
- return 0;
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。