May 2014
Beginner
1312 pages
38h 36m
English
“Programming is learned by writing programs.”
—Brian Kernighan
Here, we present the simplest C++ program that actually does anything. The purpose of writing this program is to
• Let you try your programming environment
• Give you a first feel of how you can get a computer to do things for you
Thus, we present the notion of a program, the idea of translating a program from human-readable form to machine instructions using a compiler, and finally executing those machine instructions.
To get a computer to do something, you (or someone else) have to tell it exactly — in excruciating detail — what to do. Such a description ...