Actual argument
An actual argument is a variable or an expression holding in a function call which replaces the formal parameter that is a part of the function.
Example:
# include <iostream.h>
void main( )
{
int x, y;
void output(int x, int y); //function declaration
output(x,y); //x and y are the actual argument
}