Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

closed What is the c++ language?

+16 votes
asked Feb 17, 2022 by GAJANAND CHAUHAN (230 points)
closed Apr 18, 2022 by Admin
closed with the note: answered

4 Answers

+1 vote
answered Feb 17, 2022 by SS16CO002_Faisal Khan (160 points)

C++ is a general purpose, object-oriented, middle-level programming language and is an extension of C language, which makes it possible to code C++ in a “C style”. In some situations, coding can be done in either format, making C++ an example of a hybrid language.

+2 votes
answered Feb 17, 2022 by Peter Minarik (86,180 points)

Check out the Wikipedia on the matter.

commented Feb 17, 2022 by Светлана Печенко (110 points)
C++ a general-purpose programming language created by Bjarne Stroustrup as an extension of the C programming language, or "C with Classes".
0 votes
answered Feb 19, 2022 by LAXMAN BHAGWAN RATHOD (140 points)
C++ is an object oriented programming language that is viewed by many as the best language for creating large scale applications.

c++ is a superset of the C language.
0 votes
answered Apr 13, 2022 by userdotexe (1,340 points)

It wasn't originally made to be classified as a new language, in fact it was made to be basically "C with classes." It was created by Bjarne Stroustrup to be basically the earliest version of C object-oriented programming. In some ways it's easier than C (std::cin for instance is I think easier than C scanf), in other ways it's more confusing/harder. It's one of the world's most popular programming languages, and is extremely powerful (if you know how to use it properly). It's defined as a general purpose language (it can do pretty much any job you want it to), and a middle-level language (it's easier to write/read than a language like C, but harder to write/read than Java or Python).

:)

Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...