Re: Printing a bignumber

2011-04-20 Thread Giuseppe Barbieri
Solved, i included applink.c 2011/4/20 Giuseppe Barbieri > Hello, > > > I am having really problems to get a big number printed out in the > stdout... > > > This is how it should be (if I got it properly): > > > *BIGNUM *r;* > *BIO *out;* > * > * > *out = BIO_new_fp(stdout, BIO_NOCLOSE);* > * >

Printing a bignumber

2011-04-20 Thread Giuseppe Barbieri
Hello, I am having really problems to get a big number printed out in the stdout... This is how it should be (if I got it properly): *BIGNUM *r;* *BIO *out;* * * *out = BIO_new_fp(stdout, BIO_NOCLOSE);* * * *r=BN_new();* * * *BN_rand(r, 2048, -1, 0)* * * *BN_print(out, r);* but when I ru