Computer Science, asked by sangeetajoshi42865, 6 months ago

4.
What are Functions? Name the various components of a function.​

Answers

Answered by user00445
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 rumig0720
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