Home » C Programming » Functions » Question
  1. Which of the following is a correct format for declaration of function?
    1. return-type function-name(argument type){}
    2. return-type (argument type)function-name;
    3. return-type function-name(argument type);
    4. All of above
    5. None of these
Correct Option: C

return-type function-name(argument type);



Your comments will be displayed only after manual approval.