What compilation do?

Answers were Sorted based on User's Feedback



What compilation do?..

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

What compilation do?..

Answer / mahendra giri

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

What compilation do?..

Answer / guest

source code to obj

Is This Answer Correct ?    2 Yes 1 No

What compilation do?..

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

What compilation do?..

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

What compilation do?..

Answer / naveen

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 ?    0 Yes 0 No

What compilation do?..

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

Post New Answer

More C Interview Questions

6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?

3 Answers  


Why functions are used in c?

0 Answers  


How to convert a binary number to Hexa decimal number?? (Note:Do not convert it into binary and to Hexadecimal)

1 Answers   iLantus, Subex,


where are auto variables stored? What are the characteristics of an auto variable?

0 Answers  


What is the difference between test design and test case design?

0 Answers  






what is the associativity of bitwise OR operator?

1 Answers  


What is null character in c?

0 Answers  


What is #pragma directive?how it is used in the program? what is its advantages and disadvantages?

2 Answers  


Is it possible to create recycle bin in mobiles?

2 Answers  


what is void pointer?

2 Answers  


There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side?

1 Answers   Hathway,


what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;

0 Answers   L&T,


Categories