单项选择题

以下程序的结果是______。
int a,b;
void fun()
a=100;b=200;
main()
int a=5,b=7;
fun();
printf("%d%d\n",a,b);

A.100200
B.57
C.200100
D.75