How to print a large number

How to Print a very large number e.g. of about 50 digits ?

2 Likes

In C, you can implement it using arrays if the number is generated during program execution, or you can use concepts of file when the number is to be inputted and store it in a file, later you can read the contents of the file and store it an array.

1 Like

or u can use bignum class

i have tried. And it works

mention in which language you need to print…