• 2022-07-22
    如果有函数的定义形式为: float fun(flat x, int y, char c) { ...... } 则下列给出的函数的原型声明中,正确的是( )。
    A: float fun(float x, int y, char c);
    B: float fun(float x, int y, char);
    C: float fun(float, int, char);
    D: fun(int, int, int);