Decimal to Binary conversion function

Discussion in 'Software' started by MBlock, Apr 4, 2007.

  1. MBlock

    MBlock Private E-2

    Hey everyone,

    I have what seems like it should be a simple question. I am trying to write a function in C code that will convert a decimal number to a string of 1's and 0's of it's binary equivilant.

    I need to have the function found out if a specific location of the string is a 1 or a 0 so the function takes as arguments, the integer value and the bit position interested in. So for example TheFunction(125, 3) would return either a 1 or 0 that was at position 3 of the binary equivilant of 125.

    My first thought was to make a loop that takes the integer value and mod it with 2 "%2" and set that answer equal to the first position of the string. Than divide the integer value by 2 and mod that answer with 2 and so on and so fourth. However, dividing by two only works if I can ignore the .5 part of an odd number divided by two. As an integer it will round the .5 up and mess up my results unless theres a way I can completely ignore the decimal portion of the answer. Any thoughts or ideas? TIA guys!
     
  2. MutD

    MutD Specialist

    To completely ignore the decimal part of an answer when dividing, subtract 0.5 from what your are dividing. Then round that, which will give you what you want. For example;

    4/2 = 2, rounded = 2
    3.5/2 = 1.75, rounded = 2

    5 / 2 = 2.5, rounded = 3
    4.5 / 2 =2.25, rounded =2

    Notice that even numbers stay the same when rounded, where as odd numbers get rounded to one number less.
    Does that make sense? Is it what you wanted?
     
  3. MBlock

    MBlock Private E-2

    That works and is what I was looking for. Thanks!
     
  4. abhi_dheer

    abhi_dheer Private E-2

    Please give me some tips on decimal number to binary number conversion in java.

    Thanks,
    Abhi.
     
  5. MutD

    MutD Specialist


MajorGeeks.Com Menu

Downloads All In One Tweaks \ Android \ Anti-Malware \ Anti-Virus \ Appearance \ Backup \ Browsers \ CD\DVD\Blu-Ray \ Covert Ops \ Drive Utilities \ Drivers \ Graphics \ Internet Tools \ Multimedia \ Networking \ Office Tools \ PC Games \ System Tools \ Mac/Apple/Ipad Downloads

Other News: Top Downloads \ News (Tech) \ Off Base (Other Websites News) \ Way Off Base (Offbeat Stories and Pics)

Social: Facebook \ YouTube \ Twitter \ Tumblr \ Pintrest \ RSS Feeds