How to print a large number

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

1 Like

mention in which language you need to print…

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.

or u can use bignum class

i have tried. And it works