...
Code Block | ||
---|---|---|
| ||
float x, y, result;
if ( (x == 0.f) && islessequal(y, 0) ) {
/* handle domain error condition */
}
result = pow(x, y);
|
...
...
Code Block | ||
---|---|---|
| ||
float x, y, result;
if ( (x == 0.f) && islessequal(y, 0) ) {
/* handle domain error condition */
}
result = pow(x, y);
|
...