You have two intersecting parabolas and you want to find the area by integrating from the lower point of intersection to the higher point. The function integrated will be the f(x) = yhi - ylo
Points of intersection of the two curves are such that x2 - c2 = c2 - x2 , so x = +/- c
The area will be the integral from -c to c of (c2 - x2 ) - (x2 - c2) or 2(c2 - x2). You could use symmetry to integrate from 0 to c and just (c2 - x2), but you would then have to remember to divide the area by 4.
The integral yields 2(c2x - x3/3) evaluated at c and -c. This equals the area and you can solve for c.
Good luck!