单项选择题

定义函数:int fun(int x=0){......},下列调用不正确的语句是()。

A.int x =fun(5,0);
B.int x =fun();
C.int y =fun(0);
D.int y =fun(5);