This program is based on the program in K&R in the input/output section

#include <stdio.h>


 main(){

double sum, v;

sum = 0;

while (scanf("%1f",&v)==1)
    printf("\t%.2f\n",sum+=v);
return 0;
}

It compiles ok. But when trying to run, from any input the output is "-NAN", presumably NOT A NUMBER. I have no idea why. Any advice would be appreciated.

link|improve this question

It seems I may have fixed it by changing double to float. Which makes sense, since the input and output are floats. But in K&R they use double. – JJG Feb 16 '11 at 0:40
feedback

3 Answers

up vote 6 down vote accepted

The format code is wrong in scanf. It should be %lf (with lower case L), not %1f.

 while (scanf("%lf",&v)==1)

This is because %lf scans for a double, and %f scans for a float. For details, see scanf format codes.

link|improve this answer
+1 for an excellent catch. While my answer would work, yours is "more correct" – corsiKa Feb 16 '11 at 0:42
I'm sure it was just a mis-read, given how close "1" and "l" look in text. – Reed Copsey Feb 16 '11 at 0:44
Thanks. That's what happens when you mindlessly copy code. But if I use "lf", it still gives -NAN if sum and v are floats. It only works if they are double. Do you know why? – JJG Feb 16 '11 at 0:46
Because "%lf" is for double values and "%f" for floats. See the documentation for format codes dgp.toronto.edu/~ajr/209/notes/printf.html – Constantin Feb 16 '11 at 0:51
+1 learned something new today. – Dave O. Feb 16 '11 at 1:06
show 1 more comment
feedback

Try changing the double to a float.

link|improve this answer
feedback
scanf("%1f",&v)

You reading a float, but your variable is a double. Try:

scanf("%lf",&v)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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