https://github.com/realtristan/cbase
Convert decimal to binary, hex, octal, etc. and vice versa! Implementation of the numeral representation concepts learned in our CIS*1910 class for the fun of it!
https://github.com/realtristan/cbase
binary c conversion decimal hex
Last synced: over 1 year ago
JSON representation
Convert decimal to binary, hex, octal, etc. and vice versa! Implementation of the numeral representation concepts learned in our CIS*1910 class for the fun of it!
- Host: GitHub
- URL: https://github.com/realtristan/cbase
- Owner: realTristan
- License: mit
- Created: 2023-09-23T23:01:00.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-06T22:56:41.000Z (almost 3 years ago)
- Last Synced: 2025-01-20T05:49:49.384Z (over 1 year ago)
- Topics: binary, c, conversion, decimal, hex
- Language: C
- Homepage: https://realtristan.github.io/cbase/
- Size: 78.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cbase  

Convert decimal to binary, hex, octal, etc. and vice versa! Numeral representation concepts learned in our CIS*1910 class.
## Todo
- [X] Convert from decimal to base b
- [X] Convert from base b to decimal
- [X] Convert from base b to base c
- [X] Add bases
- [X] Multiply bases
## Example
```bash
[1] Decimal to base conversion
[2] Base to decimal conversion
[3] Base to base conversion
[4] Base addition
[5] Base multiplication
[6] Decimal to base 16 conversion
>> 1
Enter a number: 12931
Enter a base: 16
Decimal to base result: 3283
```
### How to run locally
Run the following in the terminal of the root dir. (with the Makefile) or in the docker container.
```
$ make
```
### How to test locally
Run the following in the terminal of the root dir. (with the Makefile) or in the docker container. All tests must be passed before code is merged into master!
```
$ make testing
```
### How to run with docker
Run the following in the terminal of the root dir. (with the Dockerfile)
```
$ docker build -t cbase .
$ docker run -it --rm --name cbase cbase
$ make
```
# License
MIT License
Copyright (c) 2023 Simpson Computer Technologies Research
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.