← back

C++

C++ a compiled language, which means a compiler needs to first translate your C++ source code into machine code before it can be run.

# compile
g++ hello.cpp -o hello

# execute
./hello

Data Types

type    usage                   examples

int     int numbers             0, 400 
double  floating-point numbers  3.14, -200.0 
char    characters              'a', '@' 
string  sequence of characters  "hello world!" 
bool    truth values            true, false 

Type conversion, "convert value to type" -> (type) value.

double a = 3.5;
int b = (int) a; // convert a double to an int

Bitwise Operators

int x = 3;  // in binary: 0011
int y = 9;  // in binary: 1001

int z = x << 2; // z equals 12, in binary: 1100
z = y >> 1; // z equals 4, in binary: 0100
z = x | y;  // z equals 11, in binary: 1011

When a variable is declared, a free memory address is set aside for the purpose of storing the value inside that variable. C++ provides two powerful features that allow programmers to directly manipulate memory:

Reference

A reference variable is an alias to an existing variable. It is declared by using an ampersand & after the type.

int exam_grade = 85;
int &score = exam_grade; // a reference

When the value of score is changed, the value of exam_grade will also change in the same way.

The primary application for references in C++ is in function parameters. Because the reference parameter acts as an alias for the argument, a function that uses a reference parameter is able to modify the argument passed in.

Input/Output

iostream, which stands for “input/output stream”, is part of the C++ standard library that deals with basic input and output.

// include the iostream header at the beginning of your program
#include <iostream>

std::cout, which stands for “character output”, is used together with the insertion operator << to print values on the terminal:

std::cout << "Hello World!";

std::endl, which stands for “end line”, can also be used to achieve a new line. \n and std::endl are mostly interchangeable.

std::cout << "Hello World!" << std::endl;
std::cout << "C++ is fun" << std::endl;

std::cin, which stands for “character input”, can be used together with the extraction operator >> to read input from the user.

int x;
std::cin >> x;  // get user input and store it in variable x

Program Structure

#include <iostream>
using namespace std;

int main() {
  cout << "Hello, world!";
  return 0;
}

The above line is a preprocessor directive, a special type of statement that starts with the # symbol and is examined before actual compilation.

The include keyword is used here to import libraries.

using namespace std;

The above line introduces the namespace std into the current program. This line allows the usage of standard library objects without prepending the std:: identifier.

int main() {

This is the beginning of the main function. Every C++ program must have a main function in order to run.

return 0

At the end of the main(), indicates the program ran without issues.

Memory Addresss

The ampersand symbol & is called the address of operator and is used to access the memory address of a variable. This can be done by preceding the name of a variable with &:

std::string message = "Hello World!";

std::cout << message << std::endl;

// Print the memory address of message (0x7ffee9b21af0)
std::cout << &message << std::endl;

Since memory addresses are essentially randomized, don’t expect to get the exact same result in your program.

Pointers

A pointer in C++ is a variable that stores a memory address as its value.

int *age;
char *initial;

A pointer variable is usually assigned with a memory address obtained by the address of operator &.

string day = "Monday";

string* ptr = &day

Dereference

When not used in a declaration, the asterisk symbol * is called the dereference operator and is used to obtain the value pointed to by a pointer variable.

// Reference: print the memory address of day (0x7ffd1d8306c4)
std::cout << ptr << std::endl;

// Dereference: print the value of day (Monday)
std::cout << *ptr << std::endl;

Null Pointer

It is dangerous to leave a pointer variable uninitialized. If you are unsure where to point, assign that variable to nullptr, which is a keyword that provides a typesafe pointer value representing an empty pointer.

In older C/C++ code, NULL was used for this purpose. nullptr is meant as a modern replacement to NULL.

int *ptr = nullptr;

Looping

// while loop
int count = 0;
while (count <= 10) {
  std::cout << count;
  count++;
}

// do-while loop
int price = 300;
do {
  std::cout << "Too expensive!";
} while (price > 500);

// for loop
for (int i = 0; i <= 10; i++) {
  std::cout << i;
}

// for-each loop
int fibonacci[5] = { 0, 1, 1, 2, 3 };
for (auto number:fibonacci){
  std::cout << number;
}