Skip to content

Instantly share code, notes, and snippets.

@kylelk
Created November 23, 2014 07:47
Show Gist options
  • Save kylelk/0ab117ecefcfa149d3a7 to your computer and use it in GitHub Desktop.
Save kylelk/0ab117ecefcfa149d3a7 to your computer and use it in GitHub Desktop.
Android created Gist
#include <stdio.h>
void printd(int n)
{
if (n < 0)
{
putchar('-');
n = -n;
}
if (n / 10)
printd(n / 10);
putchar(n % 10 + '0');
}
int main()
{
printd(100);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment