Beispiel
int
function(
int
a,
int
b,
int
c
)
{
int
result = a+b;
return
result;
}
Lösung
Entfernen Sie den nicht verwendeten Parameter.
int
function(
int
a,
int
b
)
{
int
result = a+b;
return
result;
}