I am new to GMP Library. I am doing something like this:
mpz_t c;
mpz_init(c);
mpz_set(c, 101511210056003611542252000);
This last line gives me warning ⚠️.
Is it not allowed? If not, how should I assign such large value to this variable?
PS: If I use mpz_scan(”%Zd",c); and enter the same large value it works fine...
I entered same large value using
mpz_scan() function and it works.