定义函数:int fun(int x=0) { ...... },下列调用不正确的语句是(    )。
Aint x = fun( );[|]int x = fun(5
B 0);[|]int y = fun(0);[|]int y = fun(5);