Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
128-bit integers
Name: Hosam Date: June 15, 2003 at 17:36:31 Pacific OS: Win xp CPU/Ram: PIII 1GHz/128
Comment:
Hello All how can i define a 128-bit -Actually i need to be able to define any number of bits i want but lets start with 128 bits- integers in C (or any other programming language that has bitwise manipulation) i appreciate the help Hosam
Name: alex neethling Date: June 17, 2003 at 06:44:36 Pacific
Reply:
I dont know c but in C# and vb i would use 2 * 64 bit or 4 * 32 bit variables. Enter large, very large number as a string and break it up into 2 or 4 parts depending on temp storage var , intone inttwo ect. Don't know but that is a really large number
Summary: Hello everyone! Hey... I need to handle big numbers (several gigabytes) in C (must be plain ol' C, no C++ or anything), but 32-bit integers can't handle that... The long long type of C99 (I need C89...
Summary: i'm working on a chat program, and want to make it safe and secure. so i'm looking for 128-bit or 64-bit cipher soure code (visual basic). thanx :)...
Summary: Big numbers are popular lately. A 64-bit integer, such as an __int64 (varies from compiler to compiler) will just barely hold 20 base-10 digits, it goes to 18,446,744,073,709,551,616 unsigned. Aside f...