Most voted "bigint" questions
A bignum packet on a computer or computer program allows the internal representation of integer, rational, decimal, or floating points as long as desired and provides a set of arithmetic operations on those numbers.
Learn more…4 questions
Sort by count of
-
5
votes3
answers204
viewsHow to serialize and deserialize objects containing Bigint values in Javascript?
Let’s adopt any example code that contains a type value Bigint: const params = { largeNum: 54740991n } If I try to serialize you with JSON.stringify an error is returned: const params = { largeNum:…
-
4
votes1
answer763
viewsHow to perform operations with really large numbers in C/C++?
How to perform sum operations with really large numbers? Numbers that can reach 50 or 1000 digits. Is it necessary to install a library? How to install this library in Ubuntu? You can post some…
-
1
votes1
answer618
viewsCalculate rest with 2 Biginteger numbers
How to calculate the rest with "%" from two Biginteger numbers?
-
0
votes3
answers353
viewsAverage time in seconds
Hello, in my select I need to find the average service time (TMA) between two columns BIGINT format being them: Date: Dtbegin (start) and Dtend (end) They are of the format "dd/mm/yyyyyy hh:mm:ss",…