Tagged Questions

3
votes
1answer
254 views

tan ( pi/2 ) in objective-c (math.h) not undefined

I wrote this test code: NSLog(@"%g", tan(M_PI / 2.0)); and the output of the console is: 1.63312e+16 The issues is about approximation, right? Did I make some mistakes or the tan function of ...