Please enable JavaScript.
Coggle requires JavaScript to display documents.
Features of C++ Language, The Compiling Process of A Program, Explanation…
Features of C++ Language
Memory Management
Compiler Based
Simple
Syntax Based Language
Platform Department
Rich Library
Structured Programming Language
Pointers
Object Oriented
The Compiling Process of A Program
Source Code
A compiler takes the program code source code and converts the source code to a machine language module called an object file. Another specialized program, called a linker, combines this object file with other previously complied object files in particular run-time modules to create an executable file
Compiler
The compilation is a process of converting the source code into object code. It is done with the help of the compiler. The compiler checks the source code for the syntactical or structural errors, and if the source code is error-free, then it generates the object code
Executable File
A compiler takes the program code (source code) and converts the source code to a machine language module (called an object file). Another specialized program, called a linker, combines this object file with other previously compiled object files (in particular run-time modules) to create an executable file.
Linker
For most compilers, each object file is the result of compiling one input source code file. When a program comprises multiple object files, the linker combines these files into a unified executable program, resolving the symbols as it goes along
Explanation About the C++ Integrated Development Environment (IDE)
Some IDE's such as NetBeans and Eclipse, contain the necessary compiler, interpreter, or both; others, such as SharpDevelop and Lazarus.
An integrated development environment (IDE) is a software application that provides comprehensive facilities to computer programmers for software development. An IDE normally consists of at least a source code editor, build automation tools and a debugger.