2- first program, development environment Flashcards
Source program
program written in human-readable form
extension - .cpp (helloworld.cpp)
Compiler
applied to the source program to translate it into form machine understands
compiler may produce either object code - direct translation of the source program - extension o. (helloworld.o)
Linker
adds all other necessary parts for the program to run on a computer and produces executable code
Console application (command line application, Win32)
input/output go to console
Project
a set of files that are developed jointly. A project compiles into a single executable
Solution
A set of related projects
Subversion
version control software used by programmers for team code development
has centralized code repository
Program tracing
suspending program execution at specific source line and executing program one source line at a time
Variable watching
observing values stored in source program variables
Breakpoint
line in the source program where execution has to be suspended