1/10/00
COM1100-Winter2000-Yuhong Yin Northeastern University
8
The process of programming
nWriting source code (source program: test.cpp)
nText editor (Notepad, VC++ IDE)
nCompiling (object program : test.obj)
nCompiler to translate source code to machine language
nLinking (Executable program : test.exe)
nLinker to combine object files and library files so that they can be executed as a unit
nLoading and Executing
nLoader to load .exe file into memory and be executed
n