Computer Science, asked by ritushkumar2001, 7 months ago

9. What is short int in C programming?
a) The basic data type of C
b) Qualifier
c) Short is the qualifier and int is the basic data type
d) All of the mentioned

Answers

Answered by Grinisha09
2

Explanation:

short or short int

short or short intBoth data types are same, short int can also be written as short; short occupies 2 bytes in the memory. Here is the size and value range of short or short int. short or short int or signed short int. 2 Bytes. -32,768 to 32,767.

Answered by mad210202
1

Answer:

The answer of the following question is Option C.

Explanation:

  • short int in C programming is Short is the qualifier and int is the basic data type.
  • short int is a data type can also be written as short.
  • short occupies 2 bytes in the memory.
  • short int size is  2 Bytes from -32,768 to 32,767.
  • int type can use both qualifiers.
Similar questions