Looking at the function below what kind of value is returned by the function?
int rectangleArea (int wdth, int length)
{
int area = width * length;
return area;
}
a. int
b. float
c. double
d. char