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.
- Host: GitHub
- URL: https://github.com/lumarans30/dec2bin-c
- Owner: LuMarans30
- License: mit
- Created: 2020-12-25T11:22:26.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-07-16T22:45:39.000Z (about 1 year ago)
- Last Synced: 2024-09-18T09:21:06.769Z (about 1 year ago)
- Topics: arithmetic-operators, bitwise-operators, c, conversion, decimal-to-binary, masking, unsigned-integers
- Language: C
- Homepage:
- Size: 13.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.