Hi Guys
I'm trying to display 24 digits on 7 segment by using:
unsigned long long int z = 0;
z=123456789012345678901234LL;
But not working properly.
When i use just 19 digits it is working fine !
unsigned long long int z = 0;
z=1234567890123456789LL;
any solution for this problem ?
You can only fit 19 decimal digits on 16 hex characters
0xEfff ffff ffff ffff = 9,223,372,036,854,775,807
If you had 0xffff ffff ffff ffff ULL that would be 18,446,744,073,709,551,614 - still just 20 digits
Thank you for your reply
Thats mean there is no way to overcome this problem totally.
You can always use Nick Gammons port of the big number library - http://forum.arduino.cc/index.php/topic,85692.0.html -
robtillaart
Thank you too much that i need it exactly.