Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
How to raise a double value by power of 12?
In 10. power / calculation / Power calculations

In object C for the iPhone, how would I calculate x^y? Getting the values by popping a stack

share|improve this question
2  
Use pow function from C – nhahtdh Aug 14 '12 at 4:09
1  
are you talking about power or xor? – DanZimm Aug 14 '12 at 4:16
power, sorry. nhahtdh's answer did it for me – AGleasonTU Aug 14 '12 at 5:29

marked as duplicate by Josh Caswell, Monolo, jrturton, Mehul, Midhun MP Dec 1 '12 at 11:52

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 0 down vote accepted

You Should to #include <math.h> and then you can use

double res=pow(10, 1.5);
share|improve this answer

You can use pow(x,y).

It returns a double value.

To cast to an integer, myPowerNum = (int)pow((double)x, (double)y);

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.