Javatpoint Logo
Javatpoint Logo

What is short int in C?

In C programming language, short int is a data type used to store integer values. It is a type modifier that can be used with the int data type to create a smaller integer variable, using less memory than a regular int.

The short int data type occupies 2 bytes of memory, which is half the size of a regular int data type, and can represent integer values in the range of -32,768 to 32,767.

Syntax of Short int

The syntax for declaring a short int variable is as follows:

For example, the following code declares and initializes a short int variable named age:

The short int variables can lead to errors if they are not used carefully. It is because they have a smaller range of values than int variables and may overflow if assigned a value outside of their range. For this reason, it is important to ensure that the values assigned to a short int variable are within its range.

In addition, the short keyword can be used instead of the short int to declare a variable of this type. Therefore, the following two declarations are equivalent:

Some other additional details about the 'short int' data type are as follows:

  • Size and Range of Values

As mentioned earlier, short int occupies 2 bytes of memory, which is half the size of a regular int data type. The size of a short int is implementation-defined, which means it can vary depending on the platform and compiler being used. However, it is always guaranteed to be smaller than a regular int.

In terms of the range of values, a short int can store integer values in the range of -32,768 to 32,767. This range can be determined using the SHRT_MIN and SHRT_MAX constants, which are defined in the limits.h header file.

  • Use of 'short int'

The short int data type is typically used when memory space is a concern, or when the range of values being stored in the variable is within the range of a short int. Some examples of situations where a short int may be used include:

  • In embedded systems where memory is limited.
  • When creating large arrays of integers where memory usage needs to be optimized.
  • When the range of values being stored in the variable is known to be within the range of a short int, such as storing the age of a person, which typically does not exceed 100 years.
  • Type Modifiers

The short int data type is a type modifier, which means that it can be used in combination with other data types to create new data types. For example, the following are valid declarations of variables:

  • Implicit Conversions

When performing arithmetic or comparison operations between variables of different data types, C may perform implicit conversions to ensure that the operations are performed correctly. When using short int variables, it is important to be aware of these conversions, as they can result in unexpected behavior. For example, consider the following code:

Output:

500

Explanation:

In this code, z is assigned the value of 500, which is the correct result of adding x and y. However, if the printf statement is changed to printf("%hu\n", z), the output will be 244, which is the result of converting 500 to an unsigned short int. It happens because the %hu format specifier is used, which indicates that the value being printed should be an unsigned short int.

  • Promotion and Demotion

When performing operations between variables of different data types, C may perform promotions and demotions to ensure that the operations are performed correctly. A promotion occurs when a variable of a smaller data type is implicitly converted to a variable of a larger data type, while a demotion occurs when a variable of a larger data type is implicitly converted to a variable of a smaller data type. When using short int variables, it is important to be aware of these promotions and demotions, as they can affect the results of arithmetic and comparison operations.

  • Default Initialization

If a short int variable is declared without being initialized, its value is undefined. In other words, it can contain any value, including a negative value or a value outside the range of short int. Therefore, it is a good practice to always initialize variables to a known value when they are declared.

  • Casting

Casting is the process of converting a variable from one data type to another. When casting a variable to a short int, the value of the variable is truncated to fit within the range of short int. For example, consider the following code:

In this code, the value of x is 500, which is outside the range of short int. However, when x is cast to a short int, the value is truncated to fit within the range of short int, resulting in y being assigned the value of -12. Therefore, when casting variables, it is important to ensure that the resulting value is within the range of the data type being cast.

  • Signedness

By default, short int is a signed data type, which means it can represent both positive and negative values. However, it is also possible to declare short int as an unsigned data type, using the unsigned short int or unsigned short keyword. An unsigned short int can represent only non-negative values, but its range is doubled to 0 to 65,535.

  • Compatibility

Since short int is a smaller data type than int, it can be implicitly promoted to an int when used in arithmetic or comparison operations with an int. It means that a short int can be used wherever an int is expected, without the need for an explicit cast.

  • Portability

The size of short int can vary depending on the platform and compiler being used. To ensure portability of code across different platforms, it is recommended to use the stdint.h header file, which defines fixed-size integer types with specific widths and signedness. For example, the int16_t type is a 16-bit signed integer type, which is equivalent to short int on most platforms.

  • Array Indexing

When declaring an array of short int values, each element of the array is accessed using an index. The index can be an integer literal or a variable of type int. However, if the index is a variable of type short int, it will be automatically promoted to an int before being used to access the array. For example:

  • Bit Manipulation

short int can be used for bit manipulation operations, such as shifting and masking. When shifting a short int value, the result is a short int value. However, when using bitwise operators like & and |, the short int values are first promoted to int before the operation is performed.

  • Performance

In some cases, using short int instead of int can improve performance, especially on platforms with limited memory or processing power. However, it depends on the specific application and the hardware being used and should be tested on a case-by-case basis.

  • Initialization using suffix

C language provides a suffix to initialize variables with a short int type. The suffix "s" or "S" can be used with a constant value to specify a short int constant explicitly. For example:







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA