void fun1(){ a='C'; b='D';
main()
{fun1();
printf("%c%c",a,b);
fun2('E','F');
}
程序的运行结果是( )。