Introduction to C++ Data Types : Integer data types
In this article, I will cover the basics of C++ integer data types. Based on GNU C++ version 4.4.X on 32 bit x86 systems. Integers are used to store both positive and negative values which are whole numbers (not fractions and without decimals) so they’re most commonly used for counters, flags and iterators. When working […]