tags:

views:

73

answers:

1
+1  Q: 

sscanf for doubles

+4  A: 
bobobobo
`%lf` is needed for scanning a double with `scanf`, but it's incorrect to use `%lf` with `printf`. Simply use `%f`.
R..