1. 程式人生 > >用函式呼叫實現字串的複製

用函式呼叫實現字串的複製

#include<stdio.h>
int main()
{
void copy_string(char from[],char to[]);
char a[]="I am a student";
char b[]="You are a student";
printf("string a=%s\nstring b=%s\n",a,b);
printf("copy string a to string b:\n");
copy_string(a,b);
printf("\nstring a=%s\nstring b=%s\n",a,b);
return 0;
}
void copy_string(char from[],char to[])
{
int i=0;
while(from[i]!='\0')
{
to[i]=from[i];
i++;
}
to[i]='\0';
}