Community QBasic

Rebooting the QBasic we all know and love!


Project maintained by Cory Smith

CLNG

Rounds a numeric expression to an long (4-byte) integer.

Syntax

CLNG(numeric_expression)

Comments

numeric_expression must evaluate to a value in the range -2,147,483,648 through 2,147,483,647. If the result is outside this range, a runtime error occurs.

Examples

PRINT CLNG(338457.8)
 338458

Note

See the CDBL, CINT and CSNG functions for converting numbers to the double-precision and single-precision data types, respectively.

See Also