Conversor de decimal a binario en C++. Este proyecto incluye una función modular para convertir números enteros a su representación binaria, con tests unitarios y sistema de build con CMake. Ideal para aprender fundamentos de C++
- Converts any positive integer to binary
- Handles edge cases (like 0)
- Clean, modular code structure
- Unit tests for verification
- Clone the repository:
git clone https://https://github.com/karel-developer/Decimal-to-Binary.git cd Decimal-to-Binary
- Build the project:
mkdir build && cd build
cmake ..
make
Run the converter:
./converter
./tests
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.