cppforever.com

Steps to create a C++ program

  1. Development: Use a text editor, create the source code and save it as a file.
  2. Compilation: Translate the source code to the machine language via the program named compiler.
    • Object code is the result file.
  3. Linking: Link the object code with libraries and other code.
    • The result is an executable code, file, which can be executed on the given platforms.