Can anyone of you please tell me a data type that can hold value like 10E308.

I gave

long double db = 10E308;

But it'll give "constant too big" error since, long double is mapped to double in NT and 95.

Any alternative?