strcpy函数与main函数的实现不了?
#include<stdio.h>char strcpy(char *s, char *t)
{
while (*s++ = *t++)
;
return *s;
}
void main()
{
char *s = "I love ";
char *t = "China!";
char *a = " ";
strcpy(s, t);
while(*a++ = *s++)
;
printf("%s\n",a);
}
此程序在编译器中并没有错误,
但为什么编译器会没有结果呢?
请高手帮帮忙!