Write C Program to convert decimal number to binary using function
belongs to collection: c language function and recursion programming exercises
All Answers
total answers (1)
belongs to collection: c language function and recursion programming exercises
total answers (1)
I have used Code::blocks 12 compiler for debugging purpose. But you can use any C programming language compiler as per your availability.
Result:
Enter a decimal number: 5
Step 1: 5/2, Remainder = 1, Quotient = 2
Step 2: 2/2, Remainder = 0, Quotient = 1
Step 3: 1/2, Remainder = 1, Quotient = 0
5 in decimal = 101 in binary
need an explanation for this answer? contact us directly to get an explanation for this answer