Ask Question
18 February, 19:37

Where do you define parameter variables?

+5
Answers (1)
  1. 18 February, 20:06
    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?
Find an answer to your question 👍 “Where do you define parameter variables? ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers