Compiladores e Interpretes
Seccion en Español
¿Que es un Compilador?
Es un software que traduce un programa escrito en un lenguaje de programacion de alto nivel (C, C++, COBOL, etc.) en lenguaje de máquina. Un compilador generalmente genera lenguje esamblador primero y luego traduce el lenguaje esamblador al lenguaje máquina. Una utilidad conocida como "enlazado" combina todos los modulos de lenguaje de máquina necesarios en un programa ejecutable que se puede ejecutar en un maquina.
Diferencia entre un compilador y un interprete
El interprete es mas lento por que procesa e interpreta cada enunciado de un programa tantas veces como el numero de evaluaciones de esta afirmacion.
Seccion en Ingles
What is a Compiler?
Simply stated, a compiler is a program that reads a program written in one language - the source language - and translates it into an equivalent program in another language - the target language. as an essential part of this translation process, the presence of errors in the source program.
Interpreters
the interpreters translate and execute each code line, one by one. If they find an error, the program stops at that moment.
Difference between a compiler and an interpreter
The main difference from an operational point of view is that the compiler translates all the program before it is executed. an interpreter, on the other hand, translates and runs the program's instructions one by one.
Comentarios
Publicar un comentario