Node:LongWord, Next:, Previous:LongReal, Up:Reference



LongWord

Synopsis


type
  LongWord = LongCard;

Description

LongWord is an unsigned integer type which is larger than Word. On most platforms it is 64 bits wide and thus has a range of 0..18446744073709551615. It is the same as LongCard.

LongWord in GNU Pascal is compatible to long long unsigned int in GNU C.

There are lots of other integer types in GPC, see Integer Types.

Conforming to

LongWord is a GNU Pascal extension.

Example


program LongWordDemo;
var
  a: LongWord;
begin
  a := 42;
  WriteLn (a)
end.

See also

Integer Types, Subrange Types.