C/C++ Programmer's Guide (G06.25+)
Run-Time Messages
HP C/C++ Programmer’s Guide for NonStop Systems—429301-008
22-15
Function Parameter Messages
48
Cause. Parameters to a Power function were not acceptable. Given the expression
x
y
the following parameter combinations produce this message:
x = 0 and y < 0
x < 0 and y is not an integral value
Effect. Program behavior is language and application dependent.
Recovery. Modify the program to pass values that do not violate the above
combinations.
49
Cause. The parameter to a square root function was a negative number. The
parameter must be greater than or equal to zero.
Effect. Program behavior is language and application dependent.
Recovery. Modify the program to pass a nonnegative value to the square root
function.
Function Parameter Messages
The CRE or run-time libraries report the messages in this subsection if there is a
problem with the parameters passed to a function.
55
Cause. A required parameter is missing or too many parameters were passed.
Effect. Program behavior depends on the function that was called and the language in
which it is written.
Recovery. Correct the program to pass a valid parameter.
Exponentiation domain fault
Square root domain fault
Missing or invalid parameter