Please enable JavaScript.
Coggle requires JavaScript to display documents.
C++ INTEGRATED DEVELOPMENT ENVIRONMENT, FEATURES OF C++ LANGUAGE,…
-
-
COMPILING PROCESS
-
COMPILER
The compilation is a process of converting the source code into i=object code. it is done with the help of compiler. compiler checks the source code for the syntactical or structural errors, then it generates the object code.
LINKER
After the compiler has created all the object files, another program is called to bundle them into an executable program file. That program is called a linker and the process of bundling them into the executable is called linking.
-
-