Posts

Showing posts with the label decimal

C: Decimal/Binary Converter.

Image
A program that converts decimal and binary numbers. Repl: https://replit.com/@pereiradaniel/Dual-BinaryDecimal-Converter Git repo: https://github.com/pereiradaniel/c_programs/blob/master/bin_dec_conv/dual_conversion/dual_conv.c  

C: Decimal to binary conversion with non-recursive function.

Image
Convert a decimal number to binary using a non-recursive function. Repl: https://replit.com/@pereiradaniel/Decimal-to-binary-non-recursive Git repo:  https://github.com/pereiradaniel/c_programs/blob/master/bin_dec_conv/non_recursive/bin_dec_conv.c  

C: Decimal to binary conversion using a recursive function.

Image
Recursive method of decimal to binary conversion. Repl: https://replit.com/@pereiradaniel/Decimal-to-binary-recursive Git repo: https://github.com/pereiradaniel/c_programs/tree/master/bin_dec_conv/recursive