Math, asked by mammunvc7272, 1 year ago

When the function is called the parameters specified is known as___parameter in cpp

Answers

Answered by rjgolu
2
function returning the max between two numbers int max(int num1, int num2) { // local variable declaration int result; if (num1 > num2) result = num1; else result = num2; return result; }

timelsss: nice
Similar questions