Google News
logo
C-Language - Interview Questions
Is it possible to store 32768 in an int data type variable?
Int data type is capable of storing values between 32768 to 32767. To store 32768 a modifier has to be used with int data type and hence Long Int can be used. If there are no negative values, unsigned int can also be used.
Advertisement