Ask Question
23 October, 04:01

What is the difference between an argument and a parameter variable?

+3
Answers (1)
  1. 23 October, 06:42
    0
    The value enter in the function calling is called argument. Argument passed to function.

    The variable declare in the function to capture the pass value from the calling function is called parameters.

    Explanation:

    Argument is used in the calling function and parameter is used in the defining the function.

    for example:

    //create the function

    int count (parameter_1, parameter_2, ...)

    {

    statement;

    }

    count (argument_1. argument_1, ...); / /call the function
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “What is the difference between an argument and a parameter variable? ...” 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