Difference between parameter and argument [duplicate]
Argument is often used in the sense of actual argument vs. formal parameter. The formal parameter is what is given in the function declaration/definition/prototype, while the actual argument is what is passed when calling the function — an instance of a formal parameter, if you will. That being said, they are often used interchangeably, their … Read more