storage of pow(10,10)

how can i store( in which datatype ) pow(10,10);

It depends on the language you are working on.

If you are working on C++,long long should be used and for JAVA long is used.

Hope this helps.