(25)有以下程序
#include<stdio.h>
void fun(char *s)
{while(*s)
{ if(*s%2==0) printf(“%c”,*s);
s++;
}
main()
{ char a[]={“good”};
fun(a);printf(“\n”);
注意:字母a的ASCII码值为97,程序运行后的输出结果是
A)d B)go C)god D)good