Hi all, cbrt (cubic root) gives an unexpected result. double X; X = 16.0; X = cbrt(X); ===> Result in X is "INF"X = cbrt(16.0); ===>gives the correct result. Any idea. C32 and XC32 give same result...
↧