Write the definition of a function half, which receives an integer parameter and returns an integer that is half the value of the parameter.

LANGUAGE: C++

CHALLENGE:

Write the definition of a function half, which receives an integer parameter and returns an integer that is half the value of the parameter. (Use integer division!) So if the parameter’s value is 7, the function returns the value 3. If the parameter’s value happens to be 44, the functions returns the value 22.

SOLUTION:

int half(int value)
{ return value/2;}