I want to calculate this:
0x0404cb * 2**(8*(0x1b - 3))
which in decimal is:
263371*2^^(8*(27-3))
using | bc.
I tried with
echo 263371*2^^(8*(27-3)) | bc
expr 263371*2^^(8*(27-3)) | bc
zsh: no matches found: 263371*2^^(8*(27-3))
or try to resolve this
238348 * 2^176^
Can I resolve in one shot?