Acos / Acosl :
- The acos() function returns the arc cosine of argument
- Argument should be between -1 and 1.
- Acos return the arc cosine of the input value [ in the range 0 to PI ]
- On error ( if the arguments are not in the range -1 to 1) It returns NAN Or Displays "Invalid domain error"
Live Example :double acos( double arg ); long double acosl(long double (x));
Output :#include<stdio.h> #include<math.h> int main(void) { double result; double x = 0.5; result = acos(x); printf("Arc cosine of %lf : %lf\n",x,result); return 0; }
Arc cosine of 0.500000 : 1.047198

0 comments
Post a Comment
Your Feedback :This is Growing Site and Your Feedback is important for Us to improve the Site performance & Quality of Content.Feel Free to contact and Please Provide Name & Contact Email