Hello world
We will learn through writing code. It is customary start with "Hello world!"
Add two integers
In the following program, we will ask the user to enter two integer inputs. The
Basic data types
C/C++ statically typed languages. Before we can store certain values in the
Control flow
if-else
Loop
while (and do while) loop
Function
Function prototype
Recursion
Recursion enables us to solve certain types of problems very elegantly, however