Hello! You probably shouldn't be here. This is where we test new features before they go live. Please visit our live site for the most up to date content.

4.4 — Signed integers

An is an integral type that can represent positive and negative whole numbers, including 0 (e.g. -2, -1, 0, 1, 2). C++ has 4 primary fundamental integer types available for use: The key difference between the various integer types is that they have varying sizes — the larger integers can …

2.11 — Header files

As programs grow larger (and make use of more files), it becomes increasingly tedious to have to forward declare every function you want to use that is defined in a different file. Wouldn’t it be nice if you could put all your forward declarations in one place and then import …