Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. Which of the following function declaration is illegal?
  2. A.
    double func();
         int main(){}
         double func(){}
    B.
    double func(){};
         int main(){}
    C.
    int main()
         {
         double func();
         }
    double func(){//statements}
    D.
    None of the mentioned

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    None.


Be The First To Comment