May 2002
Beginner
320 pages
6h 18m
English
This simple program doesn't actually do anything, but the compiler doesn't care. You can compile and run this program with no problem.
Line Numbers in Code
The following listing contains line numbers. These numbers are for reference within the book. You should not type them in your editor. For example, in line 1 of Listing 1.1, you should enter int main(int argc, char* argv[]) |
1: int main(int argc, char* argv[])
2: {
3: return 0;
4: }
|
Make certain that you enter this exactly as shown (minus the line numbers). Pay careful attention to the punctuation. Line 3 ends with a semicolon; don't ...
Read now
Unlock full access