Process of compilation
1.2 Process of Compilation Let see how actually code flow in the system before execution. At first, the code (high-level language) is given to preprocessor then the preprocessor converts that to pure High-level language (when we write a c program the starting lines contain Preprocessor directives, the preprocessor removes the preprocessor directives statements by including the file. This called as file inclusion.) Then the compiler will take the purely high-level language and converts it into assembly language. Let see what happens in compiler and how it works In previous topic (1.1) we discuss what is programming and we touched the topic compiler. From the previous topic, we have learned that either a computer code is compiled or interpreted nowadays. The main aim of a compiler is to convert or translate code from one language to another language. Mainly high-level language (Human Readable) to low-level language (Machine Lang...