Computer Science, asked by Imama25, 8 months ago

if we change the compiler of C++ and use an interpreter instead for this purpose, how will it affect C++ language in terms of processing speed, efficiency or other factors?

Answers

Answered by skylog4444
6

Explanation:

well, the execution will be much slower, although it'll make debugging the program easier because it will stop interpreting as soon as an error is encountered, moreover, interpreting it won't take that much space that compiling it would take because it doesn't generate any intermediate code and last but not the least, an interpreter won't convert the instructions into systematic code, it'll directly work on the script.

hope you find this answer useful :)

Similar questions