C++ Program Structure
C++ Program Structure
objects that communicate via invoking each other's methods. Let us now
briefly look into what do class, object, methods and Instance variables
mean.
Instance Variables Each object has its unique set of instance variables.
An object's state is created by the values assigned to these instance
variables.
#include <iostream>
using namespace std;
int main() {
cout << "Hello World"; // prints Hello World
return 0;
}
The C++ language defines several headers, which contain information that is
either necessary or useful to your program. For this program, the
header <iostream> is needed.
The line using namespace std; tells the compiler to use the std namespace.
Namespaces are a relatively recent addition to C++.
The line int main() is the main function where program execution begins.
The next line cout << "This is my first C++ program."; causes the
message "This is my first C++ program" to be displayed on the screen.
The next line return 0; terminates main( )function and causes it to return
the value 0 to the calling process.
Open a command prompt and go to the directory where you saved the file.
Type 'g++ hello.cpp ' and press enter to compile your code. If there are no
errors in your code the command prompt will take you to the next line and
would generate a.out executable file.
You will be able to see ' Hello World ' printed on the window.
$ g++ hello.cpp
$ ./a.out
Hello World
Make sure that g++ is in your path and that you are running it in the
directory containing file hello.cpp.
You can compile C/C++ programs using makefile. For more details, you
can check Makefile Tutorial.
Semicolons & Blocks in C++
In C++, the semicolon is a statement terminator. That is, each individual
statement must be ended with a semicolon. It indicates the end of one
logical entity.
x = y;
y = y+1;
add(x, y);
{
cout << "Hello World"; // prints Hello World
return 0;
}
C++ does not recognize the end of the line as a terminator. For this
reason, it does not matter where on a line you put a statement. For
example:
x = y;
y = y+1;
add(x, y);
is the same as
C++ Identifiers
A C++ identifier is a name used to identify a variable, function, class,
module, or any other user-defined item. An identifier starts with a letter
A to Z or a to z or an underscore (_) followed by zero or more letters,
underscores, and digits (0 to 9).
C++ Keywords
The following list shows the reserved words in C++. These reserved
words may not be used as constant or variable or any other identifier
names.
Trigraphs
A few characters have an alternative representation, called a trigraph
sequence. A trigraph is a three-character sequence that represents a
single character and the sequence always starts with two question
marks.
Trigraph Replacement
??= #
??/ \
??' ^
??( [
??) ]
??! |
??< {
??> }
??- ~
All the compilers do not support trigraphs and they are not advised to be
used because of their confusing nature.
Whitespace in C++
A line containing only whitespace, possibly with a comment, is known as
a blank line, and C++ compiler totally ignores it.
int age;