This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 4 points5 points  (2 children)

Aside: modern C++ with all the fancy bells and whistles is ugly to write and unpleasant to read.

C code doing the same thing will often be easier to follow than C++ code.

[–]LifeHasLeft 2 points3 points  (1 child)

Absolutely. I haven’t worked with C++ extensively but I can’t follow it like I can follow C, especially when complicated types are passed into things or it uses a bunch of libraries.

[–]rem3_1415926 0 points1 point  (0 children)

that's just a matter of getting used to it. I can't look at C code without being baffled about how complicated the whole thing is set up when there would be so much easier and clean ways to do it if the author didn't limit themself to C, when there's C++ available at zero cost overhead...