Pascal <-> C++ | Explicit conversion to 16-bit unsigned integer
Pascal Used keywords: word
word
Description
word (expr)
Input
- expr - Any
Output
- return - 16-bit unsigned integer
Examples
Pascal
Explicit conversion to 16-bit unsigned integer the possible of use:xmin := 0; ymax := 65535;
x:=280; { x = 280}
y:= 1025 mod 8; { y = 128}
y := word((x * y)); { z = 35840}
.
C++
explicit conversion to 16-bit unsigned integer
Description
( type ) expression
Input
- type - 16-bit unsigned integer
- expression - Expressions
Output
- return - 16-bit unsigned 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 16-bit unsigned integer the possible of use:xmin = 0; ymax = 65535;
unsigned short x=280; // x = 280
unsigned short y = 1025 % 8; // y = 128
y = (unsigned short)(x * y); // z = 35840
You can find it in the following collections: explicit type conversions
Explicit conversion to 16-bit unsigned integer in another programming language:
Differences to: