试题详情

有以下程序 #include void fun(char *s) { while(*s) { if (*s%2==0) printf("%c",*s); s++; } } void main() { char a[]={"good"}; fun(a); printf("\n"); } 执行后的输出结果是( )。

Aa

Bb

Cc

Dmain函数必须出现在固定位置