cacos, cacosf—complex arc cosine     #include <complex.h>
     double complex cacos(double complex z);
     float complex cacosf(float complex z);
     
   Description
These functions compute the complex arc cosine of z,
with branch cuts outside the interval [-1, +1] along the real axis.
   
cacosf is identical to cacos, except that it performs
its calculations on floats complex.
   
Returns
Portability
cacos and cacosf are ISO C99