反序输出字符串(调用函数),,编译有错。。。
#include<stdio.h>#include<string.h>
#define n 1000
{
void antitone(char s[n]);
int i;
char s[n],a[n];
gets(s);
antitone(s);
for(i=0;i<=strlen(s);i++)
printf("%s",a);
return 0;
}
void antitone(char s[n])
{
int i,a[i];
for(i=strlen(s);i>=0;i--)
{
a[i]=s[i];
}
}