Compiler: Difference between revisions

From Rosetta Code
Content added Content deleted
(Link, this page needs more info)
(just a little extra)
Line 1: Line 1:
[[Category:Encyclopedia]]A compiler reads the source code of a program, and produces machine code or [[bytecode]].
[[Category:Encyclopedia]]A compiler reads the source code of a program, and produces machine code or [[bytecode]].


Some compilers translate source code into object code. This object code is then passed to a linker, which creates machine code. Other compilers translate into intermediate languages, like [[C]].


==See also==
==See also==

Revision as of 18:21, 16 January 2009

A compiler reads the source code of a program, and produces machine code or bytecode.


Some compilers translate source code into object code. This object code is then passed to a linker, which creates machine code. Other compilers translate into intermediate languages, like C.

See also