spaces in scanf format string

S

stathisgotsis

Hello everyone,

Trusting K&R2 i thought until recently that spaces are ignored in
scanf's format string. Reading arguments to the contrary confused me a
little. So i now ask:

Is scanf("%d%d",...) different from scanf("%d %d",...) in the
Standard's point of view?

Thank you.
 
R

Richard Heathfield

(e-mail address removed) said:
Hello everyone,

Trusting K&R2 i thought until recently that spaces are ignored in
scanf's format string. Reading arguments to the contrary confused me a
little. So i now ask:

Is scanf("%d%d",...) different from scanf("%d %d",...) in the
Standard's point of view?

From 4.9.6.2 fscanf:

"Input white-space characters (as specified by the isspace function)
are skipped, unless the specification includes a [ , c , or n
specifier."
 
E

Eric Sosman

Hello everyone,

Trusting K&R2 i thought until recently that spaces are ignored in
scanf's format string. Reading arguments to the contrary confused me a
little. So i now ask:

Is scanf("%d%d",...) different from scanf("%d %d",...) in the
Standard's point of view?

They differ, but so subtly that it's a "difference that
makes no difference."

Suppose the input is " 12\t34\n". The "%d%d" format
matches this input as follows: The first "%d" skips the leading
white spaces and consumes and converts the 12, then the second
"%d" skips the tab and consumes and converts the 34. The newline
is left unread.

The "%d %d" format operates just a little differently, but
has the same outcome. The first "%d" skips the leading spaces
and converts the 12, then the space in the format matches and
skips the tab, then the second "%d" skips nothing and converts
the 34. As before, the newline is left unread.

So the only difference lies in whether the tab is consumed
by the second "%d" or by the space in the format string, and
this difference isn't detectable "from the outside." scanf()
has no way to tell you how many white space characters a "%d"
did or didn't consume before converting a number.

However, this doesn't mean that white space in the format
string is "ignored." Most conversion specifiers automatically
consume and ignore leading white spaces in the input until they
find something non-white they can try to convert, but a few do
not: "%c" and "%[" start converting immediately, whether the
input is white or not, and "%n" doesn't read any input at all.
So if you want white space skipped before one of these, you
need to put some white space in the format string: " %c" or
" %[" or " %n", for instance.

The other situation where it becomes obvious that white
space in the format is not ignored is when it appears at the
end of the format string -- which is usually a mistake made
by someone who doesn't quite understand the scanf() family yet.
Consider our sample input of " 12\t34\n" and imagine reading
it with scanf("%d%d\n", &x, &y). The two "%d" specifiers will
convert their numbers as before, but what will the format's "\n"
do? Hints: all white space in the format is equivalent in the
sense that it matches any kind of white space in the input, and
a format's white space can match any amount of white input. Try
to predict what will happen, and then try it for yourself.
 
S

stathisgotsis

Ο/Η Eric Sosman έγÏαψε:
The other situation where it becomes obvious that white
space in the format is not ignored is when it appears at the
end of the format string -- which is usually a mistake made
by someone who doesn't quite understand the scanf() family yet.
Consider our sample input of " 12\t34\n" and imagine reading
it with scanf("%d%d\n", &x, &y). The two "%d" specifiers will
convert their numbers as before, but what will the format's "\n"
do? Hints: all white space in the format is equivalent in the
sense that it matches any kind of white space in the input, and
a format's white space can match any amount of white input. Try
to predict what will happen, and then try it for yourself.

Thank you and Richard for your answers.

I assume the statement above will try to consume all white space
until it encounters some non whitespace. I had never thought of this
before, so thank you for pointing this out as well.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top