单项选择题

function fun1(){
    var a = 200
    function fun2(){
        console.log(a)
    }
    fun2()
}
fun1()
输出结果()

A.200
B.报错
C.undefined