0
What's different between compiler and interpreter
2 ответов
+ 5
Compiler converts code in byte code and interpreter exicute that code one by one.
+ 1
A compiler reads the code and turns it in a much simpler format called assembly language, while an interpreter reads each line, and executes it.