Jump to content

Steps to create executable program in C++

From C++ Forever
Revision as of 21:40, 25 March 2025 by Robertvokac (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
  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.