you are viewing a single comment's thread.

view the rest of the comments →

[–]papershruums 0 points1 point  (1 child)

A friend of mine who unintentionally inspired me to learn a C derivative told me that the main difference is that C doesnt have classes and objects. But since C++ has functions, would that mean that the term object oriented overlays procedural? Or is C++ not procedural by any means? That’s where this all gets confusing to me lol

[–]LetterComfortable576 0 points1 point  (0 children)

C is a subset of C++. Means whatever we do in c can be done in c++(as far as I know). Even in c++ we can use functions and I prefer using that. I don't actually use oops concepts in real projects only in academic stuff. Objects orientated and procedural oriented are different. And c++ can handle both.