[求助]大家帮忙看一下这个程序
//此程序在TC里可以运行,但在VC6.0里运行不了,我装的是VC6.0中文版
#include "stdio.h"
void main()
{
void copy_string(char *from,char *to);
char *a="I am a teacher.";
char *b="you are a student.";
printf("%s\n%s\n",a,b);
copy_string(a,b);
printf("%s\n%s\n",a,b);
}
void copy_string(char *from,char *to)
{
for(;*from!='\0';from++,to++)
*to=*from;
*to='\0';
}
[此贴子已经被作者于2007-5-2 9:39:24编辑过]