小弟写了个程序不知道哪里有问题?
#include <stdio.h>#include <string.h>
void fun(char *s,char t[])
{
int i,j;
j=0;
for(i=0;s[i]!='\0';i++)
if(i%2!=0&&'s[i]'==0)
t[j++]=s[i];
}
void main()
{
char s[100],t[100];
printf("\nplease enter string s:");
scanf("&s",s);
fun(s,t);
printf("\nthe result is:%s\n",t);
}