FreeBASIC - 64-bit integer: longint
64-bit signed integer type is used to store negativ or pozitiv whole number. 64-bit integer and his value range: from -9223372036854775808 to 9223372036854775807.longint
Description
longint
Examples
FreeBASIC
64-bit integer the possible of use:xmin = -9223372036854775808
ymax = 9223372036854775807
Dim x As longint= -82345 ' x = -82345
Dim y As longint= -(1512345 \ 70)' y = -21604
y = ClngInt((x * y)) ' z = 1778981380
You can find it in the following collections: signed integers | integers | numbers | data types
64-bit integer in another programming language:
Differences to: