4.5 — Unsigned integers, and why to avoid them
In the previous lesson (), we covered signed integers, which are a set of types that can hold positive and negative whole numbers, including 0. C++ also supports unsigned integers. are integers that can only hold non-negative whole numbers. To define an unsigned integer, we use the unsigned keyword. By …