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