help with C programs
i hope you will be good
can you please help me to solve these programs and convert them to c programs
1- find the roots of the equation ( ax2 + bx + c = 0 ) by calling 3 functions from the main function , were first function for reading the coffessionts a,b & c , second function for checking the coffessiont of x2 (a) is not zero , and the decrement is not negative , exiting in other case , third function for finding the roots and displying them .
R = -b _+ sqrt(b2 - 4ac) / 2a
2- evaluate and displying the area of any triangle whose sides are given by using a function
where a = sqrt ( S (s-a) * (s-b) * ( s-c ) )
and s = (a+b+c) / 2
3- evaluate the angles of a triangle given its sides by usiing function .
4- find the real root of the equation
3x# + 5X - 26 = 0
by using function
5- evaluate the area under the curve 3X2 + 2X + 5
where 0 <= X <= 3