Tagged Questions
3
votes
7answers
450 views
How would you implement the pilloried function in the Daily WTF?
The Daily WTF for 2008-11-28 pillories the following code:
static char *nice_num(long n)
{
int neg = 0, d = 3;
char *buffer = prtbuf;
int bufsize = 20;
if (n < 0)
{
...