Computer Science, asked by mini12, 1 year ago

what is the meaning of argument in c++

Answers

Answered by ajrocks
2
Arguments in c++ are the data that is used in the functions.It could be formal or actual depending on whether you are calling a function or executing it.

Eg: int func(int a,int b) // actual arguments
{c= a+b
}
func(a,b) // formal arguments
Similar questions