• 2022-06-09
    有以下语句,则调用函数的正确语句是()。int a[10];void fun(int *,int n);
    A: fun(a,10);
    B: fun(a[0],10);
    C: fun(*a,10);
    D: fun(&a,10);