Skip to main content

Posts

Showing posts with the label translator

Compilers

  A Compiler is a Computer Program that performs code translation. In fact, Compiler is a Language Translator.  A high level language program forms the input to a Compiler.  The output of a Compiler is termed as Object Code. The Compiler output may be a Binary Code. The code generated by the Compiler may be in the form of an Assembly Language Program. _______________________ _______________________ Note: Code Translators are also called Language Processors. _______________________ _______________________ The input to the Compiler is a source code. The source code is processed to obtain the object code. The source code is Programmer friendly. The object code may be a long string of 0s and 1s .  The source code is run through the Compiler. The resultant code that is obtained has a different form. The structure of the Compiled Code reflects the transformation that is performed.  Such transformational task of code translation is achieved by application of advanced p...