Please enable JavaScript.
Coggle requires JavaScript to display documents.
Explain the C++ Integrated Development Enviroment (IDE), features of C++…
Explain the C++ Integrated Development Enviroment (IDE)
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.
Some IDEs, such as NetBeans and Eclipse, contain the necessary compiler, interpreter, or both; others, such as SharpDevelop and Lazarus, do not.
features of C++ language
simple
Object oriented
platform dependet
rich library
Structured programming language.
Memory Management.
Memory Management.
Compiler based
Syntax based language
pointers
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 compiled 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.
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.
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.