Finding larger roots than 2 with arduino

Is there a function to find roots with large degrees?
For instance, say I want to solve x^14400 = 255. I need to find the 14400th root of 255. How do I do this?

root = pow(255.,1/14400.);

Pete

YES! Thank you so much!