maximum storage in int variables
-
how can i store 30 digits number in an int variable. if it is possible, then plz help me regarding this problem.
-
how can i store 30 digits number in an int variable. if it is possible, then plz help me regarding this problem.
Not in an int, unfortunately which is a 32 bit number. Use an __int64 [max - 18,446,744,073,709,551,615] (20 digits) Nish p.s. for 30 digits, you'd have to create your own class or struct!
Author of the romantic comedy Summer Love and Some more Cricket [New Win] Review by Shog9 Click here for review[NW]
-
Not in an int, unfortunately which is a 32 bit number. Use an __int64 [max - 18,446,744,073,709,551,615] (20 digits) Nish p.s. for 30 digits, you'd have to create your own class or struct!
Author of the romantic comedy Summer Love and Some more Cricket [New Win] Review by Shog9 Click here for review[NW]
-
You'll need the new Platform SDK or VC++.NET Nish
Author of the romantic comedy Summer Love and Some more Cricket [New Win] Review by Shog9 Click here for review[NW]
-
You'll need the new Platform SDK or VC++.NET Nish
Author of the romantic comedy Summer Love and Some more Cricket [New Win] Review by Shog9 Click here for review[NW]
No, __int64 is a native (but non-standard) datatype available in VC6 as well. Tomasz Sowinski -- http://www.shooltz.com
- It's for protection
- Protection from what? Zee Germans? -
how can i store 30 digits number in an int variable. if it is possible, then plz help me regarding this problem.
Do you actually need to do mathematical operations on this number, or is it just to store it. If you just need to store, then you could put it in a string or char array -- Help me! I'm turning into a grapefruit!
-
No, __int64 is a native (but non-standard) datatype available in VC6 as well. Tomasz Sowinski -- http://www.shooltz.com
- It's for protection
- Protection from what? Zee Germans?Tomasz Sowinski wrote: No, __int64 is a native (but non-standard) datatype available in VC6 as well. Oh, sorry!
Author of the romantic comedy Summer Love and Some more Cricket [New Win] Review by Shog9 Click here for review[NW]
-
how can i store 30 digits number in an int variable. if it is possible, then plz help me regarding this problem.
-
how can i store 30 digits number in an int variable. if it is possible, then plz help me regarding this problem.
-
You'll need the new Platform SDK or VC++.NET Nish
Author of the romantic comedy Summer Love and Some more Cricket [New Win] Review by Shog9 Click here for review[NW]
Nishant S wrote: You'll need the new Platform SDK or VC++.NET Sure? I use it since good old Visual C++ 4.x day... :confused: -- Daniel Lohmann http://www.losoft.de
-
Nishant S wrote: You'll need the new Platform SDK or VC++.NET Sure? I use it since good old Visual C++ 4.x day... :confused: -- Daniel Lohmann http://www.losoft.de
Daniel Lohmann wrote: Sure? Sorry for the wrong info :-(
Author of the romantic comedy Summer Love and Some more Cricket [New Win] Review by Shog9 Click here for review[NW]