root
Calculate the n-th root of a number
root<return_type>(n, a);root<int>(3, -34); //-3
root<float>(5, 23123); //7.4612
root<bool>(3, -15); //1
------------------------
root<char>(15, 98756); //'ß'Error: The nth root function is undefined for non-positive values of even root indexes (degrees)Last updated