+ 1
What does it mean for type n parameter n?
7 Réponses
+ 1
typeN is the data-type of the parameter parN. And <return type> is the type of the value that the function should return. If a function returns not a very big number, you could use the "int" data type as the return type.
0
wat
0
<return type> name(type1 par1, type2 par2, … , typeN parN)
{
List of statements
}
0
typeN parN
0
just wondering what that represents
0
type null?
0
ok I was just confused because it starts with numerics and when it goes to alpha characters it starts with n not a and it threw me off.