Ask Question
2 September, 05:28

Where do you define parameter variables?

+3
Answers (1)
  1. 2 September, 07:46
    0
    In the function definition.

    Explanation:

    Function is the block of statement which is used to perform a special task.

    when we define the function, we have call the function as well without calling function is not used.

    syntax for calling:

    name (argument_1, argument_1, ...);

    we put the argument in the calling to function.

    syntax for defining:

    type name (parameter_1, parameter_2, ...)

    {

    statement;

    }

    In the definition, we declare parameter for use the value of arguments pass in the calling.

    Therefore, the answer is in the function definition.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Where do you define parameter variables? ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers