views:

403

answers:

3

math.h is not really a documentation. Is there something else that will describe these functions a but more in detail?

+1  A: 

Since you indicated math.h I suppose you are using C++ so here's my currently booked marked reference

http://www.cplusplus.com/reference/clibrary/cmath/

Philippe Asselin
Guess she's using Objective C. Look at the tags! Nevertheless, floorf() is the same for all C languages
Ber
yep she is. objective-c is right. but a.f.a.i.k. c++ can be used there as well. not sure.
HelloMoon
+2  A: 

Sure, for example you can look here

Valerii Hiora
+1  A: 

floorf() is a variant for the floor() function, accepting and returning float values instead of double.

The GNU Libc documentation is very helpful.

The iPhone documentation also has a man page about floor() functions.

Ber