Jump to content

Compilers for C++

From C++ Forever
Revision as of 21:48, 25 March 2025 by Robertvokac (talk | contribs) (Created page with "== Cfront == The first compiler was Cfront create by Bjarne Stroustrup in 1983. Cfront converted C++ code into C, but the resulting output was not easily readable or understandable by humans. * The generated C code was then converted by the C compiler to the machine code. Later, new C++ compilers were created. These compilers converted C++ directly to the machine code.")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Cfront

The first compiler was Cfront create by Bjarne Stroustrup in 1983.

Cfront converted C++ code into C, but the resulting output was not easily readable or understandable by humans.

  • The generated C code was then converted by the C compiler to the machine code.

Later, new C++ compilers were created. These compilers converted C++ directly to the machine code.