An open API service indexing awesome lists of open source software.

https://github.com/lumarans30/dec2bin-c

Three simple algorithms in C that convert a number from decimal to binary.
https://github.com/lumarans30/dec2bin-c

arithmetic-operators bitwise-operators c conversion decimal-to-binary masking unsigned-integers

Last synced: 7 months ago
JSON representation

Three simple algorithms in C that convert a number from decimal to binary.

Awesome Lists containing this project

README

          

# Three version decimal to binary
I've made three different versions for converting a decimal based number to a binary number in C language. In the second version the decimal number can be as large as 2^64-1 that's the limit of the unsigned long long integer type.