Example
function(
int
argument){
cout <<
"argument is "
<< argument;
}
Solution
Return an integer or declare the return type as void.
void
function(
int
argument){
cout <<
"argument is "
<< argument;
}