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 is void pointers in c?
Write a program to show the workingof auto variable.
write a program to gat the digt sum of a number (et. 15= >1+5=6)
What is #pragma directive?how it is used in the program? what is its advantages and disadvantages?
When should I declare a function?
what is call by value and call by reference
write c program to display output 10(10+20)+(10+20+30)+ ... n term
0 Answers Hindustan Gum Chemicals,
. Write a program to get a string and to convert the 1st letter of it to uppercase
write a program to remove occurrences the word from entered text?
fn f(x) { if(x<=0) return; else f(x-1)+x; }
Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......
What is static and volatile in c?