
- Forum
- Programming Talk
- C and C++
- what is c++?
what is c++?
This is a discussion on what is c++? within the C and C++ forums, part of the Programming Talk category; c++ is the language,which is inherit from the c....
-
what is c++?
c++ is the language,which is inherit from the c.
-
01-27-2012, 01:57 AM #2
- Join Date
- Jan 2012
- Answers
- 8
C++ is an "object oriented" programming language created by Bjarne Stroustrup and released in 1985. It implements "data abstraction" using a concept called "classes", along with other features to allow object-oriented programming.
.................................................................
Last edited by admin; 01-27-2012 at 09:02 AM.
-
02-23-2012, 08:06 AM #3
- Join Date
- Feb 2012
- Answers
- 66
C++is a super set of c language meaning a c++ compiler can understand all the keywords that a c compiler understands but the reverse is not true.
it implements oops concepts such as data abstraction,inheritance and polymorphism.
In c++ keyword class is used instead of struct in c
Two new keywords -public and private appear in code.
Apart from data members,the class constructors also has member functions.
The function can have same name as class itself.
-
Sponsored Ads

Reply With Quote





