Q:

WHAT IS MODIFIER IN C?

belongs to collection: C INTERVIEW QUESTIONS AND ANSWERS

0

WHAT IS MODIFIER IN C?

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

The amount of memory space to be allocated for a variable is derived by modifiers. 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.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C INTERVIEW QUESTIONS AND ANSWERS

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
WHAT ARE DIFFERENT TYPES OF MODIFIERS IN C?... >>
<< WHAT IS THE USE OF SIZEOF() FUNCTION IN C?...