Recently in programming contest in Here, the problem is pretty straight forward but catch is with worst case scenario which we have to handle data of size 10^10000
.
I tried the program in python
which is straight forward as i don't have to specify the datatype(It is taken care by the compiler ) but when i tried with C
I couldn't find the correct datatype .
(I tried uintmax_t which didn't work out too).
So how to approach very huge type of data's in C ?