Top

Discussion

Which of the following function declaration is illegal?

  • 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

Answer: D

No answer description available for this question.

No comment is present. Be the first to comment.
Loading…

Post your comment