Compilers for C++: Difference between revisions
Appearance
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." |
Robertvokac (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
== Cfront == | == Cfront == | ||
The first compiler was Cfront | The first compiler was Cfront created by Bjarne Stroustrup in 1983. | ||
Cfront converted C++ code into C, but the resulting output was not easily readable or understandable by humans. | Cfront converted C++ code into C, but the resulting output was not easily readable or understandable by humans. |
Latest revision as of 21:50, 25 March 2025
Cfront
The first compiler was Cfront created 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.