单项选择题

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

A.int y =fun(\’5\’);
B.int x =fun("5");
C.int y =fun(5);
D.int x =fun(fun(5));