[Solved] Objective-C – calculating x ^ y [duplicate]


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

double res=pow(10, 1.5);

solved Objective-C – calculating x ^ y [duplicate]