What is the name of this operator: "-->"? (stackoverflow.com) 22 points by nate_martin 12y ago ↗ HN
[–] tempestn 12y ago ↗ Hit the front page briefly a year ago: https://news.ycombinator.com/item?id=5393344Apparently 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...
[–] JoeAltmaier 12y ago ↗ Cute. Here's one:int I=7;int p = &I;float r = 14/p;What value has r? None! It doesn't compile. [–] JoeAltmaier 12y ago ↗ 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.
[–] JoeAltmaier 12y ago ↗ 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.
3 comments
[ 3.2 ms ] story [ 11.7 ms ] threadApparently 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...
int I=7;
int p = &I;
float r = 14/p;
What value has r? None! It doesn't compile.