Quote:
|
Originally Posted by ToMMan b182
I have never actually used C++ in too much detail, but I do know a little about it. Could someone give me a run down on whats different between C and C++?
|
The main feature differences are these:
1. Classes - like structs from C
2. Polymorphism (runtime and compile) - Basically this is the ability to have muptiple functions with the same name
3. Templates - generic classes
4. Exceptions - error handling mechanism