What compilation do?
Answers were Sorted based on User's Feedback
Answer / deepu chandran
compilation refers to conveting source code(high level)
into object code (machine code) by series of processes such
as lexical analysis,parsing(syntactic),sematic
analysis,optimization,preprocessor, code generation.
compiler is a program mainly written in C itself
for C compiler.
if u want 2 know more about this processes mail me at:
fortuner4u@gmail.com
| Is This Answer Correct ? | 5 Yes | 0 No |
compiler main work is to convert source code to target
code ,means when we compile our program ,source code are
converted into binary form (system understantable form)and
then execute it to user understable form.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / ananth kumar
First pre-compilation, macros are sunstituted. Then at the
time of compilation, source code is converted into object
files (in other words, decoding to machine language) and
the linker plays a major role in generating the output
executables to perform the desired function.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sachin tendulkar
Compilation (programming), translation of source code into
object code(binary format) by a compiler.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / aditya
Compilers Main work is to Coneverting Source code to Obj
(Machine code)
First it Check the Tokens, Syntex, Symentic Errors and if
it find correct it convert. If not it generate error
messege that shows on ur screen.
| Is This Answer Correct ? | 1 Yes | 1 No |
What will be your course of action for a push operation?
what is the benefit of c30
Explain how can a program be made to print the line number where an error occurs?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
What is volatile variable how do you declare it?
Give me basis knowledge of c , c++...
What are control structures? What are the different types?
Is c call by value?
What is character set?
What is null pointer in c?