I know how to obtain the square root of a number using the sqrt function.
sqrt
How can I obtain the cube root of a number?
The nth root of x is equal to x^(1/n), so use std::pow. But I don't see what this has to with operator overloading.
std::pow