关于字符串反向输出的一个问题,请大家帮忙看看错在哪里,谢谢啦。
void FAN(char to[],char from[]){
int i=0,j=0,k=0;
while(from[i]!='\0')
{
i++;
}
while(j<=i)
{
to[j]=from[i];
j++;
i--;
}
}
int _tmain(int argc, _TCHAR* argv[])
{
char a[1000]={0};//定义数组
char b[1000]={0};
gets(a);//给A中输入字符串
FAN(b,a);//通过自定义函数将数组A中的字符串反转到B中
printf("%s\n",b);
system("pause");
return 0;
system("pause");
return 0;
}
希望各位在我原有的程序上做修改,并恳请指出错在哪里,谢谢了。