INTEGER64

From QB64 Wiki

Revision as of 18:33, 21 August 2011 by Clippy (Talk | contribs)
(diff) ← Older revision | Current revision (diff) | Newer revision → (diff)
Jump to: navigation, search

_INTEGER64 is an 8 byte number type definition that can hold whole numerical values using QB64 only.


Syntax:

... variable AS _INTEGER64


Description:

  • Can be used in QB64 only with 32 or 64 bit computers.
  • Signed numerical values can range from -9223372036854775808 to 9223372036854775807.
  • QB64 _UNSIGNED _INTEGER64 values range from 0 to 18446744073709551615.
  • The variable name type suffix is &&. For unsigned values use ~&&.
  • Values can be converted to 8 byte ASCII character strings using _MK$ and back using _CV in QB64.



See also:



Navigation:
Go to Keyword Reference - Alphabetical
Go to Keyword Reference - By usage
Go to Main WIKI Page