Appendix: Compiling C++ Code
Learn about the compilation process and the different types of C++ compilers.
We'll cover the following...
For the computer to execute the “Hello World” code you have written, it first needs to be compiled by a C++ compiler. The compiler translates the textual representation of the program into a form that a computer can execute more efficiently.
What the compiler does
In very broad terms:
The compiler is a translator that acts as an ...
Ask