4.
What are Functions? Name the various components of a function.
Answers
Answered by
15
Answer:
function definition has two principal components: the first line (including the argument declarations), and the so-called body of the function. The allowable data types for a function's arguments are int and double.
Answered by
16
Explanation:
Functions can be declared either globally (inside the main() ) or locally (outside the main() ) as per the program requirement. (You can read more on this at Structure of C Program)
Similar questions