What are the stages for compilation and linking?
Answers
Answered by
24
Answer:
The Four Stages of Compiling a C Program. Compiling a C program is a multi-stage process. At an overview level, the process can be split into four separate stages: Preprocessing, compilation, assembly, and linking.
Answered by
8
The process of translating the source code into an object file is called compiling. 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.
_____________________________
Similar questions