- 2
what is the Different between C and C++
2 ответов
0
C++ is object oriented
0
C++ is object oriented programming meaning this language is closer to real world scenarios. Here firstly a class is declared which is much like a blueprint, giving just little information and then based on this class objects are created. For example a "book" class is created with members "title", "no. of pages" and two objects book 1 and book 2 can have different values for these members. Hence here objects have their own identity (name), attribute(variables) and behaviour (functions).



