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 |
Why we write conio h in c?
Why main function is special give two reasons?
Explain what math functions are available for integers? For floating point?
What does typeof return in c?
int *p=20; if u print like dis printf("%d",p); o\p:- 20; how is it possible? plz give me the explanation.
Here is a good puzzle: how do you write a program which produces its own source code as output?
Write a program that receives as input a number omaadel-n-print, four digits.
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
What is clrscr ()?
Are negative numbers true in c?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?