Home / C++ Programming / Functions - C++ :: Discussion

Discussion :: Functions - C++

  1. Which of the following function prototype is perfectly acceptable?

  2. A.
    int Function(int Tmp = Show());
    B.
    float Function(int Tmp = Show(int, float));
    C.
    Both A and B.
    D.
    float = Show(int, float) Function(Tmp);

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    No answer description available for this question.


Be The First To Comment