Home » C Programming » Functions » Question
  1. Which of the following function declaration is illegal?
    1. double function();
      int main(){}
      double function(){}
    2. double function(){};
      int main(){}
    3. int main()
      {
      double function();
      }
      double function(){//statements}
    4. All of above
    5. None of these
Correct Option: E

All of above function declaration are illegal.



Your comments will be displayed only after manual approval.