what are the compilation steps?
( i want inside the compiler )
Answer Posted / sai
Before the compilation of any C program Saved as a .C
extention. In C compiler architecture there is a
preprocesser algoritham i.e is used to preprocess the
header files. After including the header files there is a
compiler algorithm that generates .asm file to .c file.
The .obj file is generated from .asm by using assembler
algorithm. the .obj files are 2 types.
1. .boj file for library functions
2. .obj file for user defined functions
There is a linker algorithm to combine and generate .exe
file for .obj files. After .exe file the program executed
sucessfully.
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What is a macro, and explain how do you use it?
What are the advantages of Macro over function?
Explain high-order and low-order bytes.
How can you allocate arrays or structures bigger than 64K?
Why functions are used in c?
When c language was developed?
Why doesnt this code work?
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
Explain logical errors? Compare with syntax errors.
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
Differentiate between new and malloc(), delete and free() ?
What are valid operations on pointers?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
What is the benefit of using const for declaring constants?
What is difference between structure and union in c?