I'll try to get this as simple as possible. The problem is fairly simple.
long double a=100000000;
cout<<a;
Well, the output this shows is "1e+08"
I do not want the output to be in exponential form. Rather, I want it to be printed as "100000000".
What shall I do?
Thnaks in advance.