How does an interpreter/compiler work?
Share
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The Compiler scans whole program first and then translates it into machine code which will be executed by the computer processor.
The Interpreters translates one statement into machine language, executes it, and proceeds to next statement.
For example: Compiler will give almost all the error at once but interpreter will run till the instruction you have written wrong.