...used in Decryption process. It has many inbuilt functions...
big_reverse(bigint) - Reverse function It takes one bigint as argumnet and return type is alsobigint, returns bigint after reversing the digits on the bigint. a = to_bigint("65894"); cout << big_reverse(a) << std::endl;//Output : 49856 ...