The Four Stages of Compiling a C ProgramPre-ProcessorTranslatorAssemblerLinker 1) Pre-Processor:-i) Include header fileii)Replace macroiii)Remove the commentsiv)Convert .c file to .i filev) .i file is also called pure c file To convert .c to .i file use below command:-(suppose we have p1.c)cc -E p1.c -o p1.i 2) Translator:-i)It convert the program into Assembly languageii)It also check sy
The Four Stages of Compiling a C ProgramPre-ProcessorTranslatorAssemblerLinker 1) Pre-Processor:-i) Include header fileii)Replace macroiii)Remove the...