Current location - Loan Platform Complete Network - Big data management - How to deal with data that is too large and explodes in C language
How to deal with data that is too large and explodes in C language
You can use data types with larger value ranges, such as long int, float, double, etc. If the integer exceeds the value range of long int, and at the same time the integer type must be used, you need to use a special method to deal with it. For example, a large integer is divided into several parts and stored into several variables.