
 (You can compile the *.c files directly without create a project)

 
     Compute the area A of the region bounded by 
     the graph of f, the x axis, x = a and x= b.
       
        c05a1A.c  : f : x->   sqrt(x)
        c05a1B.c  : f : x-> 1/sqrt(x)
        c05a1C.c  : f : x->   sin(x)
        c05a1D.c  : f : x->   exp(x)
        c05a1E.c  : f : x->   log(x)

 
     Compute the area A of the region bounded by 
     the graph of g, the graph of h, x = a and x= b.


        c05a2A.c  : g : x-> sqrt(x)      ;   h : x->  x**2
        c05a2B.c  : g : x-> 6.-x**2      ;   h : x->  3-2*x
        c05a2C.c  : g : x-> x + 3        ;   h : x->  x**2 + 1
        c05a2D.c  : g : x-> x - 1        ;   h : x->  x**2 + 1
        c05a2E.c  : g : x-> 1/(x**2)     ;   h : x-> -x**2
        c05a2F.c  : g : x-> cos(x)       ;   h : x->  x**2
        c05a2G.c  : g : x-> cos(x)       ;   h : x->  sin(x)
        c05a2H.c  : g : x-> exp(x)       ;   h : x->  log(x)

 



     