Search code examples
cinterpreter

C Interpreter (Not Compiler)?


Possible Duplicate:
Is there an interpreter for C?

Is there a "C implementation" which acts the same as the "C abstract machine" when executing a C program? That is, a simple interpreter for C as it is described in a C standard such as C99.

There are many implementations of the C programming language that are compilers (Clang, GCC, MSVC). I'm looking for an open source implementation of a C interpreter.


Solution

  • CINT - http://root.cern.ch/drupal/content/cint But it is not C99 AFAIK.