Hacker News new | ask | show | jobs
by n_plus_1_acc 615 days ago
Which many people find unreadable compared to other versions.
1 comments

And for several reasons.

  * is it (*s)++ or *(s++)?
  * it is not *++s nor ++*s
And I have seen

  *(*s)++
in some places!

It is concise syntax but very confusing.