Ask Question
19 December, 15:28

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

+4
Answers (1)
  1. 19 December, 15:51
    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 & 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