- 1
What is and IDE and what is an interpreter?
help me know the relation and their difference??
3 ответов
+ 10
IDE (Integrated Development Environment) is the environment in which you write your codes. IDEs normally come with a source code editor, build automation tools and a debugger.
An interpreter is a computer program which execute the codes you have written line by line without prior code compilation into machine language.
+ 1
an IDE is a design environment where you create code. the IDE will link to an interpreter or compiler to run/execute your code.
the interpreter is a program that interprets your code
a compiler compiles your code into an executable etc ready for it to be run
interpreter and compiler use depends on the language being used.
c is a compiled language.
python is an interpreted language
+ 1
thank u guys