what are the compilation steps?
( i want inside the compiler )
Answer Posted / vignesh1988i
first step::: it will include the watever header file
with .h extension
second::: then it will read each line by line ...
third:::: then it will convert the code to the machine
level code
fourth>::: it will then match the syntax with the compailer
syntax which is being writtern there
fifth::: but logical errors in the program cant be found by
the compailer
sixth::: as soon as the syntax is said to be correct this
will be again decoded by the compailer to the user....this
will say SUCCESS... if syntax dosent match wit that syntax
in compailer it will give an ERROR
| Is This Answer Correct ? | 15 Yes | 13 No |
Post New Answer View All Answers
Is it fine to write void main () or main () in c?
What is the use of bitwise operator?
How can I ensure that integer arithmetic doesnt overflow?
Why is c known as a mother language?
5 Write an Algorithm to find the maximum and minimum items in a set of ānā element.
What does volatile do?
What does sizeof int return?
What is the difference between the local variable and global variable in c?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
What are bitwise shift operators in c programming?
How do you define CONSTANT in C?
Explain modulus operator. What are the restrictions of a modulus operator?
How can I prevent another program from modifying part of a file that I am modifying?
What is time complexity c?