| A conversion function that converts a numeric expression to an integer by rounding the fractional part of the expression.
Syntax: CLNG(numeric-expression) A% = CLNG(66.7) '-- equals 67
Details: Implemented for compatibility with QBasic, you can use the more logical function, ROUND, instead. |
|