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 |
How can I write a function analogous to scanf?
WHAT IS INT?
write a program to remove occurrences the word from entered text?
What are the application of c?
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
What are the languages are portable and platform independent?Why they are like that?
What is volatile
What are dangling pointers? How are dangling pointers different from memory leaks?
The variables are int sum=10,SuM=20; these are same or different?
How can you determine the maximum value that a numeric variable can hold?
How would you write qsort?
using only #include <stdio.h> and #include <stdlib.h> Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.