Loading [MathJax]/jax/output/HTML-CSS/fonts/TeX/fontdata.js

When you start Notepad on Windows or the Terminal on Linux, you actually are telling the processor to run an executable of that program. The executable is the finished product that can be run and should do what the programmer intended to achieve. 

 

Steps to Generating an Executable

Writing a C++ program is a first step towards creating an executable that can eventually run on your operating system. The basic steps in creating applications in C++ are the following:

  1. Writing (or programming) C++ code using a text editor
  2. Compiling code using a C++ compiler that converts it to a machine language version contained in "object files"
  3. Linking the output of the compiler using a linker to get an executable (.exe in Windows, for example)

 

Programming a C++ Application

Megan Stark
Module by Megan Stark, updated more than 1 year ago
No tags specified