When dealing with large datasets, what is the advantage of using 'long long int' over 'int'?

  • Better precision
  • Higher range
  • No advantage
  • Smaller memory usage
When dealing with large datasets, using 'long long int' provides a higher range of values that can be represented, which is useful for large data. It comes at the cost of increased memory usage.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *