Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bit manipulations/operations calculator?

I am getting into bit manipulation in C/C++.

Is there a good calculator or program (executable or online), that makes it relatively convenient to study & test bit procedures?

I can do same work in Visual Studio or Eclipse, but relatively small program is easier and more convenient.

like image 745
newprint Avatar asked Dec 21 '22 22:12

newprint


1 Answers

I use bincalc by Ding Zhaojie. It conveniently lets you see what's going on in hex and binary (and decimal if you care), and has a nice gadget for inputting binary or flipping bits.

  • http://sites.google.com/site/bincalc/

Free, but no source.

like image 200
Michael Burr Avatar answered Jun 11 '23 23:06

Michael Burr