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
How many levels of pointers have?
Can a variable be both constant and volatile?
What is derived datatype in c?
What is c programing language?
Tell me when is a void pointer used?
What is a MAC Address?
What are compound statements?
Why are all header files not declared in every c program?
What are the types of unary operators?
What is static and volatile in c?
Why main is not a keyword in c?
Why calloc is better than malloc?
Did c have any year 2000 problems?
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
Write a code of a general series where the next element is the sum of last k terms.