Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. What is the problem in the following declarations?
         int func(int);
         double func(int);
         int func(float);
  2. A.
    A function with same name cannot have different signatures
    B.
    A function with same name cannot have different return types
    C.
    A function with same name cannot have different number of parameters
    D.
    All of the mentioned

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    None.


Be The First To Comment