+ 1
What is the difference between compiler and interpreter ?
2 Réponses
+ 1
A compiler compiles (converts to abject) your whole program at once and gives you a list of all errors in the file. The interpreter will execute the one command you type immediately and will report the errors for that one line or execute if it was syntactically correct.
+ 1
A compiler is what makes your code executable. The interpreter is the active console like cmd in Windows.