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) (Robertvokac moved page Steps to create program in C++ to Steps to create executable program in C++ without leaving a redirect)
  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 code. This step is done by the linker.