Y
Hacker News
new
|
ask
|
show
|
jobs
by
zozbot234
202 days ago
A postfix "*" would be completely redundant since you can just use p[0] . Instead of *p++ you'd have (p++)[0] - still quite workable.
1 comments
fastaguy88
202 days ago
You're kidding, right? (p++)[0] returns the contents of (p) before the ++. Its hard to imagine a more confusing juxtaposition.
link