输出字符串中的ASC值为偶数且下标为偶数的数!大神帮忙看下!!
#include <stdio.h>#include <string.h>
void fun(char *s, char t[])
{
char *p,*k=p,*m=t;
while(*s)
{
*(k++)=*s;
s+=2;
}
*k='\0';
while(*p)
{
if((*p)%2==0)
*(m++)=*p;
p++;
}
*m='\0';
}
main()
{
char s[100], t[100];
void NONO ( );
printf("\nPlease enter string S:"); scanf("%s", s);
fun(s, t);
printf("\nThe result is: %s\n", t);
NONO();
}
大神帮忙看哈 要求是输出s中下标为偶数并且ASC值为偶数的数放到数组t中 返回 那是小弟写的一个函数 不知道哪出问题了 求解!!