Tagged Questions

25
votes
6answers
2k views

I don't get this C/C++ Joke

After reading this article on thedailywtf.com, I'm not sure that I really got the joke. It says there that some guy changed the code from int function() { int x; char data_string[15]; ... ...
4
votes
3answers
133 views

Unable to locate the Bug

I was recently on The Daily WTF when I came across this old post. In it the author mentions that one of the programmers changed this code: int main (int argc, char **argv) { int x; char ...
3
votes
7answers
449 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) { ...