I am learning C at my college and I am new to programming. My task is to create a function which should calculate an arcsin for my input.
I tried to debug it using xcode. Everything works fine until return arcsin(new); is called. Then its a segmentation fault: 11 . I am not sure why but breakpoint at float arcsin(floatvalue){ ... while running second cycle tells me that float old and float value is NAN.
float arcsin(float value){
float old = value;
float new = value + (0.5 * ((value * value * value)/3));
float accurate = 0.00001;
if ((new - old) < accurate){
return new;
}
else{
return arcsin(new);
}
}
int function_arcsin(int sigdig, float value){
value = arcsin(value);
printf("%.10e\n",value);
return 0;
}
