Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
my_put_nbr.c
SUBMITTED BY:
Guest
DATE:
Nov. 29, 2013, 6:36 p.m.
FORMAT:
Text only
SIZE:
317 Bytes
Raw
Download
Tweet
HITS:
1211
Go to comments
Report
int my_put_nbr(int nb)
{
int div;
div = 1;
if (nb < 0)
{
my_putchar(45);
nb = nb * -1;
}
while ((nb / div) >= 10)
div = div * 10;
while (div > 0)
{
my_putchar((nb / div) % 10 + '0');
div = div / 10;
}
}
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus