http://www.perlmonks.org?node_id=1012798


in reply to Re: built in function for binary division
in thread built in function for binary division

Hi Kenosis,

Yes, this is what I meant. Is it possible to do by any built-in perl function ? Else any hint to achieve that ?
Thanks.

  • Comment on Re^2: built in function for binary division

Replies are listed 'Best First'.
Re^3: built in function for binary division
by Kenosis (Priest) on Jan 11, 2013 at 05:52 UTC

    You can work with binary numbers as shown, viz., by preceding the number with 0b, performing the operation, and then formatting the result using sprintf.

    Were you thinking of some other binary math function?

      Hi Kenosis

      Yes I was looking for some binary math subroutine for this, but what you have shown by preceding 0b is also fine.
      Thank you !!

        You're most welcome, ghosh123!