ADBRITE ads links
You are here: CodeIdol > C++ > Borland C++ Builder: The Complete Reference > page: 39 40 41 42 43 44 45 46 47 48 49
Source code
The text of a program that a user can read; commonly thought of as the program. The source code is input into the C compiler.
Object code
Translation of the source code of a program into machine code, which the computer can read and execute directly. Object code is the input to the linker.
Linker
A program that links separately compiled functions together into one program. It combines the functions in the standard C library with the code that you wrote. The output of the linker is an executable program.
Library
The file containing the standard functions that can be used by your program. These functions include all I/O operations as well as other useful routines.
Compile time
The events that occur while your program is being compiled. A common occurrence during compile time is a syntax error.
Run time
The events that occur while your program is executing.
C h a p t e r 1 :
A n O v e r v i e w o f C
13
THE
FOUNDATION
OF
You are here: CodeIdol > C++ > Borland C++ Builder: The Complete Reference > page: 39 40 41 42 43 44 45 46 47 48 49
|
|
Related tags
Popular Categories
Unix books and guides
AJAX popular information
C# language guides
Windows books and cookbooks
.......
|
|