Click here to Skip to main content
15,885,278 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
what is the difference between compiler and interpretor?

What I have tried:

what is the difference between compiler and interpretor?
Posted
Updated 11-Jun-20 19:25pm
v2

Search engines are your friend. Compiler vs Interpreter - GeeksforGeeks[^]
 
Share this answer
 
Compilers convert your code into a machine readable form which can be executed later. Once successfully compiled, the machine code version can be released without the source or the compiler being needed to run it.
Interpreters execute your code directly, normally line by line. To run interpreted code, the release must include the source and the interpreter to run it.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900