In the expression (3 # 8), the 3 and 8 are converted to the binary numbers B"0011" and B"1000", respectively. The expression then becomes B"1011".
(3 # 8)
3
8
B"0011"
B"1000"
B"1011"
- Altera -