Please enable JavaScript.
Coggle requires JavaScript to display documents.
IDE, FEATURES OF C++ LANGUAGE, DESCRIBE THE COMPILING PROCESS OF A PROGRAM…
IDE
ARE SOFTWARE PLATFORMS THAT PROVIDE PROGRAMMERS AND DEVELOPERS A COMPREHENSIVE SET OF TOOLS FOR SOFTWARE DEVELOPMENT IN A SINGLE PRODUCT
AN IDE NORMALLY CONSISTS OF A SOURCE CODE EDITOR, BUILD AUTOMATION TOOLS AND A DEBUGGER
-
FEATURES OF C++ LANGUAGE
COMPILED
C++ also supports pointers which are widely used in programming and are often not available in several programming languages
Pointer Support
C++ also supports pointers which are widely used in programming and are often not available in several programming languages
Object-oriented
C++ is an object-oriented programming language. This means that the focus is on “objects” and manipulations around these objects. Information about how these manipulations work is abstracted out from the consumer of the object.
Rich library support
Through C++ Standard Template Library (STL) many functions are available that help in quickly writing code. For instance, there are standard libraries for various containers like sets, maps, hash tables, etc.
SPEED
C++ is the preferred choice when latency is a critical metric. The compilation, as well as the execution time of a C++ program, is much faster than most other general purpose programming languages.
-