adspace
Answer Posted / Anjali
When deciding which integer type to use, consider the range of values needed to be stored, the precision required, and the target hardware architecture. If the values are within a certain range (usually -32768 to 32767), an `int` is often a good choice. For smaller or larger ranges, consider using `char`, `short`, `long` or other types.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers