Object Pascal <-> Visual C++ .NET | 64-bit integer

Object Pascal

Int64

Description

 Int64
Used keywords: int64

Examples

Object Pascal

64-bit integer the possible of use:
xmin := -9223372036854775808; ymax := 9223372036854775807;
x:= -82345;        // x = -82345
y:= -(1512345 div 70);// y = -21604
y := Int64((x * y));     // z = 1778981380
.
Visual C++ .NET

long long

Description

 long  long
Used keywords: long
Note: In C like languages the data type size may be different depending on compiler and architecture, we show only one standard look.

Examples

Visual C++ .NET

64-bit integer the possible of use:
xmin = -9223372036854775808; ymax = 9223372036854775807;
long long x= -82345;        // x = -82345
long long y = -(1512345 / 70);// y = -21604
y = (long long)(x * y);     // z = 1778981380

You can find it in the following collections: signed integers | integers | numbers | data types
Languages: en hu cz sk