The Artima Developer Community
Sponsored Link

C# Answers Forum
c++

1 reply on 1 page. Most recent reply: Feb 5, 2003 6:29 AM by Jesper Hertel

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 1 reply on 1 page
maria

Posts: 1
Nickname: eminem2003
Registered: Feb, 2003

c++ Posted: Feb 3, 2003 6:11 PM
Reply to this message Reply
Advertisement
what is the differens between interpreter and an compiler


Jesper Hertel

Posts: 1
Nickname: jhertel
Registered: Feb, 2003

Re: c++ Posted: Feb 5, 2003 6:29 AM
Reply to this message Reply
From http://math.hws.edu/javanotes/c1/quiz-answers.html:

"Question 3: What is the difference between a "compiler" and an "interpreter"?

Answer: Compilers and interpreters have similar functions: They take a program written in some programming language and translate it into machine language. A compiler does the translation all at once. It produces a complete machine language program that can then be executed. An interpreter, on the other hand, just translates one instruction at a time, and then executes that instruction immediately. (Java uses a compiler to translate java programs into Java Bytecode, which is a machine language for the imaginary Java Virtual Machine. Java Bytecode programs are then executed by an interpreter.)"

See also: http://www.8052.com/faq.phtml?CATEGORY=2#10

Jesper

Flat View: This topic has 1 reply on 1 page
Topic: apic for mysql client Previous Topic   Next Topic Topic: Cursor movement & positioning

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use