Or login with:
#include <math.h>| double | atan (double x) |
| long | atanl (long double x) |
| float | atanf (float x) |
| complex | atan (complex x) |
| double complex | catan (double complex x) |
| float complex | catanf (float complex x) |
| long double complex | catanl (long double complex x) |
#include <stdio.h> #include <math.h> int main(void) { double result, x = 0.6325; result = atan(x); printf("The arc sin of %lf is %lf\n", x, result); }
You must login to leave a messge