Ask Question
11 February, 02:34

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

+2
Answers (1)
  1. 11 February, 04:48
    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?
Find an answer to your question ✅ “What is the difference between an argument and a parameter variable? ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers