I was writing a program to calculate negative powers of 2. I used the following two code snippets:
cout.precision(3);
cout << scientific << pow(2.0, p) << endl;
AND
ans = pow(2.0, p);
printf("%.3e\n", ans);
For p = -8271, the cout gives the right answer (1.517e-2490) but I get a widely different answer for the printf (6.929e-310). Why does this discrepancy occur?
I use Codeblocks on Ubuntu.
ans? If it isn't of typedouble, then you might be passing the wrong type of argument toprintf. – templatetypedef May 9 '12 at 2:45