3 comments

[ 3.2 ms ] story [ 11.7 ms ] thread
Hit the front page briefly a year ago: https://news.ycombinator.com/item?id=5393344

Apparently I was the only one who noticed that time too! ;)

Aside: I can't believe that was a year ago - searched my browser history expecting to find it last month...

Cute. Here's one:

int I=7;

int p = &I;

float r = 14/p;

What value has r? None! It doesn't compile.

Fudge. Frickin HN won't render that code right, or edit it, or delete it. Its supposed to be

  float r = 14/*p;
for pointer indirection of course.