Pascal - Bitwise operators
We have more of the bitwise operators, using the bitwise operator we can set or determine the specific bit in whole numbers.Pascal
Other pieces of example codes:2 shl 2
x := $f and $ff;
x := not(32 shr 2);
x := 8 shr 1;
x := 1 or 2;
x := 123 xor 25;
Bitwise operators in another programming language: