+ 2
how is c++ different from c
3 Réponses
+ 1
C++ is the C with classes
0
1. C is procedural language on the other hand C++
is an object oriented language.
2. C is a low level language , C++ is a middle level
language.
3. C++ can be broken down to solve real world
problems which is not the case in C
4. Input and output function differ in the two
languages.
0
C++ has classes, templates, smart pointers, broader standard library and lot of other fancy stuff of which enables, for example, object oriented programming and safer memory handling.