i am working on an apps for calculating fuel...
i need to know how i can power a number in 10?
the Excel code is "10^1.5"
If you mean in XCode, you have to #include <math.h> and then you can use pow:
#include <math.h>
pow
double res=pow(10, 1.5);
2.1m questions
2.1m answers
60 comments
57.0k users