Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
4  
Can we see the variable declaration for ans? If it isn't of type double, then you might be passing the wrong type of argument to printf. – templatetypedef May 9 '12 at 2:45

1 Answer

up vote 3 down vote accepted

I bet that's because ans is a long double, but you didn't tell printf to expect a long double. The format code you want is %.3Le assuming that's the case.

The g++ compiler even has a warning to detect format/parameter mismatches (I think it comes with -Wall) but I always prefer iostreams because they're type safe like this.

All this is of course assuming that p is also long double, causing the compiler to pick the long double version of pow.

share|improve this answer
ans is a long double. Mark B, you are right! I changed the parameter to %.3Le and now it works beautifully. Thanks a tonne for the help. – VarunAgrawal May 13 '12 at 2:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.