//字符串拷贝用指针实现 
void mystrcpy(char *s, char *t)
{
	while (*s++ = *t++)   //C中非0即表示逻辑真,所以不用和’\0’比较了
		;	
}