GMP variable's bit size..

Posted by kishorebjv on Stack Overflow See other posts from Stack Overflow or by kishorebjv
Published on 2010-03-25T04:55:50Z Indexed on 2010/03/25 5:03 UTC
Read the original article Hit count: 475

Filed under:

In GMP library,

_mp_size holds the number of limbs of an integer..

we can create integers of size 1 limb(32bits),2 limbs(64bits),3 limbs(96bits)...so on. using mpz_init or mpz_random functions..

cant we create an integer variable of size 8bit or 16 bit.. other than multiples of 32 bit size ???

can you code for that??

thank you ..

© Stack Overflow or respective owner

Related posts about gmp