Your basic problem is you don't understand how to get values out of a function. Change the relevant lines to:
int FindArea(int rBase, int rHeight); // prototype
and
int area = FindArea(rBase, rHeight);
and
int FindArea(int rBase, int rHeight)
{
return rBase * rHeight;
}