Slashdot Mirror


User: iamsridhar

iamsridhar's activity in the archive.

Stories
0
Comments
1
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1

  1. What's inelegant in C++ on What I Hate About Your Programming Language · · Score: 1
    What I find inelegant about C++, is the syntax used for pure virtual functions.

    virtual void foo() = 0;

    It would have been much more elegant to add another keyword like pure instead of having this weird syntax.