Possible Duplicate:
How does an interpreter/compiler work
Hi what is the exact difference between the Compiler and interpreter ?
Possible Duplicate:
How does an interpreter/compiler work
Hi what is the exact difference between the Compiler and interpreter ?
From Wikipedia:
Compiler
A compiler generates machine-dependent assembly code which can then be assembled and linked to into the appropriate machine op-codes to allow the program to execute. This process can only be run at build time.
Interpreter
An interpreter generates machine-independent code which can then be on-the-fly compiled to assembly code (e.g. Just-in-Time compilation). This process can be executed at build time and / or run time.
Hope this helps!