I already found some help with decimal to binary convdersion, but much of what I found didn't pertain completely to what I need.
The question and my code(not even sure if im on the right track) is as follows:
Write a function called decToBinaryString that recieves a non-negative int and returns a string that is a binary representation of the number input.
tips - concatenate strings together
test odd/even using %
write a main() that test the code
Im only getting an output of 1 regardless of what I input for even numbers (still working on odd numbers)