I'm trying to display number on screen wihout using the exponential form (1x10e-7 etc) Unfortunatly as it converts the number to a string it converts the exponential format with it
Code:
double j; //as Long
string s; //as String
j=0.00000000001
ostringstream ss;
ss<<j;
s=ss.str();
cout<<s;
The programme will display 10e-10 instead of '0.00000000001' which I want