what is the meaning of argument in c++
Answers
Answered by
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
Eg: int func(int a,int b) // actual arguments
{c= a+b
}
func(a,b) // formal arguments
Similar questions
Chemistry,
8 months ago
English,
8 months ago
Science,
1 year ago
Social Sciences,
1 year ago
Social Sciences,
1 year ago
English,
1 year ago