+ 2
C and C++
What's the difference? I'm interested in learning C, but...what's the difference?
3 Answers
+ 5
C++ supports object oriented programming,
C doesn't,
you could say C++ is more classy.
You should go for C++
+ 1
C++ is a superset of C. In other words, C++ takes some of the syntactical nightmares that exist in C and makes them more legible for us mere humans. C is faster than C++, but a lot more difficult to program in without considerable experience. Check out C, then look at C++ to see just what it does for you.
If you have some programming experience check out http://devdocs.io/c/ for C
and http://devdocs.io/cpp/ for C++ as a reference for your adventures.
+ 1
@Christian Bradley
So...C and C++ are the same, but C++ is easier to understand?