C++ <-> FreeBASIC | Explicit conversion to 32-bit integer
C++
explicit conversion to 32-bit integer
Description
( type ) expression
Input
- type - 32-bit integer
- expression - Expressions
Output
- return - 32-bit integer
Note: In C like languages the data type size may be different depending on compiler and architecture, we show only one standard look.
Examples
C++
Explicit conversion to 32-bit integer the possible of use:xmin = -2147483648; ymax = 2147483647;
long x= -12345; // x = -12345
long y = -(15123 / 70);// y = -216
z = (long)(x * y); // y = 2666520
.
FreeBASIC Used keywords: cint
CInt
Description
CInt (expr)
Input
- expr - Any
Output
- return - 32-bit integer
Examples
FreeBASIC
Explicit conversion to 32-bit integer the possible of use:xmin = -2147483648
ymax = 2147483647
Dim x As integer= -12345 ' x = -12345
Dim y As integer= -(15123 \ 70)' y = -216
z = CInt((x * y)) ' y = 2666520
You can find it in the following collections: explicit type conversions
Explicit conversion to 32-bit integer in another programming language:
Differences to:
Share