Arrays of large integers - pass by reference getting in the way

Kevin Ryde user42@zip.com.au
Sat, 30 Aug 2003 08:10:56 +1000


Aaron Lehmann <aaronl@vitelus.com> writes:
>
> x[0][0] = y[0];

You probably don't want to do this, unless it's only to move an mpz_t.
Better mpz_init the elements of x and operate on them as normal.