Structure of A Program
Structure of A Program
The best way to learn a programming language is by writing programs. Typically, the first
program beginners write is a program called "Hello World", which simply prints "Hello World" to
your computer screen. Although it is very simple, it contains all the fundamental components C+
+ programs have:
Hello World!
Edit
&
Run
The left panel above shows the C++ code for this program. The right panel shows the result
when the program is executed by a computer. The grey numbers to the left of the panels are line
numbers to make discussing programs and researching errors easier. They are not part of the
program.
Let's examine this program line by line:
Line 1: // my first program in C++
Two slash signs indicate that the rest of the line is a comment inserted by the
programmer but which has no effect on the behavior of the program. Programmers use
them to include short explanations or observations concerning the code or program. In
this case, it is a brief introductory description of the program.
Line 2: #include <iostream>
Lines beginning with a hash sign (#) are directives read and interpreted by what is
known as the preprocessor. They are special lines interpreted before the compilation of
the program itself begins. In this case, the directive #include <iostream>, instructs
the preprocessor to include a section of standard C++ code, known as header iostream,
that allows to perform standard input and output operations, such as writing the output
of this program (Hello World) to the screen.
Line 3: A blank line.
Blank lines have no effect on a program. They simply improve readability of the code.
Line 4: int main ()
This line initiates the declaration of a function. Essentially, a function is a group of code
statements which are given a name: in this case, this gives the name "main" to the
group of code statements that follow. Functions will be discussed in detail in a later
chapter, but essentially, their definition is introduced with a succession of a type ( int), a
name (main) and a pair of parentheses (()), optionally including parameters.
The function named main is a special function in all C++ programs; it is the function
called when the program is run. The execution of all C++ programs begins with the
main function, regardless of where the function is actually located within the code.
Lines 5 and 7: { and }
The open brace ({) at line 5 indicates the beginning of main's function definition, and
the closing brace (}) at line 7, indicates its end. Everything between these braces is the
function's body that defines what happens when main is called. All functions use braces
to indicate the beginning and end of their definitions.
1 int main ()
2{
3 std::cout << " Hello World!";
4}
We could have written:
all in a single line, and this would have had exactly the same meaning as the preceding code.
In C++, the separation between statements is specified with an ending semicolon ( ;), with the
separation into different lines not mattering at all for this purpose. Many statements can be
written in a single line, or each statement can be in its own line. The division of code in different
lines serves only to make it more legible and schematic for the humans that may read it, but has
no effect on the actual behavior of the program.
Now, let's add an additional statement to our first program:
Edit
&
Run
In this case, the program performed two insertions into std::cout in two different statements.
Once again, the separation in different lines of code simply gives greater readability to the
program, since main could have been perfectly valid defined in this way:
int main () { std::cout << " Hello World! "; std::cout << " I'm
a C++ program "; }
Edit &
Run
The source code could have also been divided into more code lines instead:
1 int main ()
2{
3 std::cout <<
4
"Hello World!";
5 std::cout
6
<< "I'm a C++ program";
7}
And the result would again have been exactly the same as in the previous examples.
Preprocessor directives (those that begin by #) are out of this general rule since they are not
statements. They are lines read and processed by the preprocessor before proper compilation
begins. Preprocessor directives must be specified in their own line and, because they are not
statements, do not have to end with a semicolon (;).
Comments
As noted above, comments do not affect the operation of the program; however, they provide an
important tool to document directly within the source code what the program does and how it
operates.
C++ supports two ways of commenting code:
1 // line comment
2 /* block comment */
The first of them, known as line comment, discards everything from where the pair of slash
signs (//) are found up to the end of that same line. The second one, known as block comment,
discards everything between the /* characters and the first appearance of the */ characters,
with the possibility of including multiple lines.
Let's add comments to our second program:
Edit
&
Run
cout is part of the standard library, and all the elements in the standard C++ library are
declared within what is a called a namespace: the namespace std.
In order to refer to the elements in the std namespace a program shall either qualify each and
every use of elements of the library (as we have done by prefixing cout with std::), or
introduce visibility of its components. The most typical way to introduce visibility of these
components is by means of using declarations:
Edit
&
Run
Both ways of accessing the elements of the std namespace (explicit qualification and using
declarations) are valid in C++ and produce the exact same behavior. For simplicity, and to
improve readability, the examples in these tutorials will more often use this latter approach with
using declarations, although note that explicit qualification is the only way to guarantee that
name collisions never happen.
Namespaces are explained in more detail in a later chapter.