Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > C Programming > sscanf'ing floats into structure members

Reply
Thread Tools

sscanf'ing floats into structure members

 
 
Bernard Liang
Guest
Posts: n/a
 
      06-21-2006
(Using GCC) Simplified excerpt:

typedef struct {
double a;
double b;
double c;
} my_type;

int read(FILE* fp, my_type* data) {
char src_buffer[1024];
char q[16];
float utc_time;
...
sscanf(src_buffer, "%12s %f %f %f %f\n", q, &utc_time, &(data->a),
&(data->b), &(data->c));
}
Suppose that src_buffer looks like " 13:39:55.871 204234.000000
3746.741211 -12223.571289 20.279785\n".

For some reason, it is stuffing 0.0's into data->a, data->b, and
data->c. Why is that? I can't seem to figure out why this can possibly
be happening. Is there a problem with my implementation of what I am
trying to do? The alternative is to make other temporary floats and then
to assign them to data->a ... (which works), but this shouldn't be
necessary.

-Bernard Liang

 
Reply With Quote
 
 
 
 
Michael Mair
Guest
Posts: n/a
 
      06-21-2006
Bernard Liang schrieb:
> (Using GCC) Simplified excerpt:


Do not give us "as if" code but a real, compiling minimal
example.

> typedef struct {
> double a;
> double b;
> double c;
> } my_type;
>
> int read(FILE* fp, my_type* data) {


Note: Make clear _what_ you are reading by giving the function
a telling name. As soon as you "read" a second kind of data,
you are stuck with read() and readOtherData().

> char src_buffer[1024];
> char q[16];
> float utc_time;
> ...
> sscanf(src_buffer, "%12s %f %f %f %f\n", q, &utc_time, &(data->a),
> &(data->b), &(data->c));


Your forgot to check whether the return value of sscanf() is 5.

Your main mistake, though, is to use a float* format for a double*
argument. Use "%lf" instead.

You forgot to return something at the end of the function.
> }
> Suppose that src_buffer looks like " 13:39:55.871 204234.000000
> 3746.741211 -12223.571289 20.279785\n".


Give us real input data. Avoid line breaks;
" 13:39:55.871 204234.000000"
" 3746.741211 -12223.571289"
" 20.279785\n"
is just as good.

> For some reason, it is stuffing 0.0's into data->a, data->b, and
> data->c. Why is that? I can't seem to figure out why this can possibly
> be happening. Is there a problem with my implementation of what I am
> trying to do? The alternative is to make other temporary floats and then
> to assign them to data->a ... (which works), but this shouldn't be
> necessary.


This usually is not necessary.

If the code you posted is close enough to your real code,
your problem is an FAQ,
http://www.c-faq.com/stdio/scanf2.html
If it is not, then this is an excellent example why you should
post real code.

Cheers
Michael
--
E-Mail: Mine is an /at/ gmx /dot/ de address.
 
Reply With Quote
 
 
 
 
Eric Sosman
Guest
Posts: n/a
 
      06-21-2006


Bernard Liang wrote On 06/21/06 13:53,:
> (Using GCC) Simplified excerpt:
>
> typedef struct {
> double a;
> double b;
> double c;
> } my_type;
>
> int read(FILE* fp, my_type* data) {
> char src_buffer[1024];
> char q[16];
> float utc_time;
> ...
> sscanf(src_buffer, "%12s %f %f %f %f\n", q, &utc_time, &(data->a),
> &(data->b), &(data->c));
> }
> Suppose that src_buffer looks like " 13:39:55.871 204234.000000
> 3746.741211 -12223.571289 20.279785\n".
>
> For some reason, it is stuffing 0.0's into data->a, data->b, and
> data->c. Why is that?


Because "%f" generates a float value and stores it
via the matching float*. You want to store double values
through double* pointers, so you should use "%lf".

You mention you're using gcc, which happens to be one
of the compilers that can generate helpful warnings for
this sort of mismatch -- if you ask it politely:

gcc -W -Wall -ansi -pedantic ...

(You might want to specify a different level of Standard
conformance by changing -ansi to something else; check the
info screens.)

--


 
Reply With Quote
 
Keith Thompson
Guest
Posts: n/a
 
      06-21-2006
Bernard Liang <> writes:
> (Using GCC) Simplified excerpt:
>
> typedef struct {
> double a;
> double b;
> double c;
> } my_type;
>
> int read(FILE* fp, my_type* data) {
> char src_buffer[1024];
> char q[16];
> float utc_time;
> ...
> sscanf(src_buffer, "%12s %f %f %f %f\n", q, &utc_time, &(data->a),
> &(data->b), &(data->c));
> }


For sscanf, "%f" expects a pointer to float. &utc_time is of the
correct type, but the following three arguments are all pointers to
double. Use "%lf" for a pointer to double (or "%Lf" for a pointer to
long double).

--
Keith Thompson (The_Other_Keith) kst- <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
class members vs instance members hdixon Python 3 07-09-2006 06:56 PM
Difference between static final members and final static members(if any)? JFCM Java 4 02-07-2006 11:32 AM
Floats to chars and chars to floats Kosio C Programming 44 09-23-2005 09:49 AM
Templates: Members Vs. non-members Dave C++ 3 08-10-2004 11:23 AM
Can nested class members access private members of nesting class? CoolPint C++ 8 12-14-2003 02:30 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57