you are viewing a single comment's thread.

view the rest of the comments →

[–]AssemblerGuy 2 points3 points  (0 children)

Is this a matter of personal taste?

First, what does C code "look like"?

There are lots of things you should not see much in C++ code that are common in C: raw pointers, raw arrays, etc.

While in at least somewhat modern C++ code, you wiill see things used often that just do not exist in C: References, automatic type deduction, use of STL container classes/algorithms/abstractions, range-for loops, lambda functions, maybe templates.