0
What is a parameter?
I'm learning C++ and I don't know what a parameter is.Please help.
2 Answers
+ 3
a parameter it's the value you input to a function.
int function sum(int a, int b){
return a+b;}
sum(3,2);
3 and 2 are the parameters of sum function.
0
Thanks