Data types revisited | short, int, long, float, double, signed char
Duration: 16:30 Min | Sep 07, 2023
The int data type in C is used to store whole numbers without decimal values. It can hold both positive and negative values within a specific range. The size of the int data type is usually 4 bytes, which allows it to represent a wide range of values. The range of the int data type typically spans from -2,147,483,648 to 2,147,483,647 on most systems.