pow() in C
how can we compute the pow of real huge numbers like pow(1000,1000) or even more in c?
i guess even long double can't be used in this case as it results in overflow.
i guess the bit representations is a way but still pretty clueless.
It must be implemented in C and not any other language.
Please share your ideas for this problem.