1/10/00
COM1100-Winter2000-Yuhong Yin Northeastern University
11
The process of programming
lWriting source code (source program)
–Text editor (Notepad, VC++ IDE)
–test.cpp
lCompiling (object program)
–Compiler to translate source code to machine language
–test.obj
lLinking (Executable program)
–Linker to combine object files and library files so that they can be executed as a unit
–test.exe
lLoading and Executing
–Loader to load .exe file into memory and be executed