Zach Smith
Zach Smith

Reputation: 5674

What is equivalent of the math.h library in iPhone SDK?

I am using the exp and pow functions in a program for iPhone, which would use the math.h library if I was programming in C. What is the equivalent I need to use in iPhone SDK so my two functions will work properly?

Upvotes: 0

Views: 1407

Answers (2)

nick
nick

Reputation: 3458

You can continue you use math.h :)

Just

#include <math.h>

Upvotes: 2

Related Questions