Skip to content

Instantly share code, notes, and snippets.

@yao2030
Created May 20, 2014 06:40
Show Gist options
  • Save yao2030/851fc9610fcdfd9355a9 to your computer and use it in GitHub Desktop.
Save yao2030/851fc9610fcdfd9355a9 to your computer and use it in GitHub Desktop.
void to_binary(unsigned long n)
{
int r;
r = n % 2;
if (n >= 2)
to_binary(n / 2);
putchar('0' + r);
}
// the gist is the last line of the function. '0' + r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment