Computer Science, asked by snowflake86, 7 months ago

Name the different types of type modifiers? ​

Answers

Answered by rohit50003
6

Explanation:

C++ Modifier Types. C++ allows the char, int, and double data types to have modifiers preceding them. A modifier is used to alter the meaning of the base type so that it more precisely fits the needs of various situations. The modifiers signed, unsigned, long, and short can be applied to integer base types.

Answered by ashutoshmishra24
0

Answer:

please mark me as brainliest

Explanation:

Data type modifiers in C

In c language Data Type Modifiers are keywords used to change the properties of current properties of data type. Data type modifiers are classified into following types.

  • long
  • short
  • unsigned
  • signed

Modifiers are prefixed with basic data types to modify (either increase or decrease) the amount of storage space allocated to a variable.

For example, storage space for int data type is 4 byte for 32 bit processor. We can increase the range by using long int which is 8 byte. We can decrease the range by using short int which is 2 byte.

Similar questions