Dorsa R.

asked • 02/02/21

please explain how this function in C code turn numbers in binary :

void bin(int x, int value)
{
if(x == 0)
return;
bin(x / 2, value - 1);
if(x % 2)
printf("%d ", value);
}


1 Expert Answer

By:

Patrick B. answered • 02/02/21

Tutor
4.7 (31)

Math and computer tutor/teacher

Still looking for help? Get the right answer, fast.

Ask a question for free

Get a free answer to a quick problem.
Most questions answered within 4 hours.

OR

Find an Online Tutor Now

Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.