is there a function for this?

Ok, so i didn't learn about this in class yet but i need it in a program that i am working on.
Is there a way to write the formula r= ( (12*t)radical(total/p))?

The sqrt() function only does square roots, but in this case, my root is (12*t)!

i dont know what to use to write this into a program code! Help!
Yes, it's called pow.
pow(total/p,1.0/(12*t));
thank you very much!!!!!
Topic archived. No new replies allowed.