Jump to content

Steps to create executable program in C++

From C++ Forever
  1. Create the C++ source code in any text editor. This step is done by the programmer (human).
  2. Convert the C++ source code to the object code (machine language). This step is done by the compiler.
  3. Link the object code with libraries. The result is an executable program. This step is done by the linker.