+ 1
What is the difference between compiler and interpreter?
2 odpowiedzi
+ 7
compiler translates source code into machine code which can then be run.
interpreter translates source code into machine code while running, making it slower.
+ 7
Interpreter does line by line translation and execution.