473,396 Members | 2,129 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

scanf problem

I know this is the problem that most newbies get into.

#include<stdio.h>
int main(void)
{
char a;
scanf("%c",&a); /*1st scanf */
printf("%c\n",a);
scanf("%c",&a); /*2nd scanf*/
printf("%c\n",a);
return 0;
}

This will not work, because after the first scanf a newline is left
behind in the input stream, unconsumed.

I made this attempt to solve this problem

#include<stdio.h>
int main(void)
{
char a,b;
scanf("%c",&a);
printf("%c\n",a);
getchar(); /* putting getc(stdin) also worked*/
scanf("%c",&a);
printf("%c\n",a);
return 0;
}

Out of curiosity I tried this also,

#include<stdio.h>
int main(void)
{
char a,b;
scanf("%c",&a);
printf("%c\n",a);
scanf("\n%c",&a);
printf("%c\n",a);
return 0;
}

which gave me expected output.

But my question is (finally!) , why the following code doesn't work,

#include<stdio.h>
int main(void)
{
char a,b;
scanf("%c\n",&a); /* 1st scanf */
printf("%c\n",a);
scanf("%c",&a); /* 2nd scanf */
printf("%c\n",a);
return 0;
}

My assumption was 1st scanf will consume the newline left in the input
stream.
Thanks for your time,
Yugi.

Sep 8 '06 #1
14 13731
I use fscanf to read from a file and the newline is consumed, using
both MS-VC 6 and gcc 3.3.5. What are you using?

Sep 8 '06 #2
main() wrote:
I know this is the problem that most newbies get into.

#include<stdio.h>
int main(void)
{
char a;
scanf("%c",&a); /*1st scanf */
printf("%c\n",a);
scanf("%c",&a); /*2nd scanf*/
printf("%c\n",a);
return 0;
}

This will not work, because after the first scanf a newline is left
behind in the input stream, unconsumed.

I made this attempt to solve this problem

#include<stdio.h>
int main(void)
{
char a,b;
scanf("%c",&a);
printf("%c\n",a);
getchar(); /* putting getc(stdin) also worked*/
scanf("%c",&a);
printf("%c\n",a);
return 0;
}
This will only work (the way you seem to want it to) if the second
character in the first input line is a newline. You introduced a new
variable here, b, did you mean to do something with it?
Out of curiosity I tried this also,

#include<stdio.h>
int main(void)
{
char a,b;
scanf("%c",&a);
printf("%c\n",a);
scanf("\n%c",&a);
printf("%c\n",a);
return 0;
}

which gave me expected output.
Any whitespace in the format string will match any amount of whitespace
in the input, including none. Your newline will match any number of
spaces, tabs, newlines, etc., until a non-whitespace character is
encountered.
But my question is (finally!) , why the following code doesn't work,

#include<stdio.h>
int main(void)
{
char a,b;
scanf("%c\n",&a); /* 1st scanf */
printf("%c\n",a);
scanf("%c",&a); /* 2nd scanf */
printf("%c\n",a);
return 0;
}

My assumption was 1st scanf will consume the newline left in the input
stream.
The first scanf call will store the first character into a and consume
of any immediately following whitespace (including newlines and any
whitespace that follows). You didn't specify what the input was that
you used or how the output differed from your expectations, so it's
difficult to help you understand what the "problem" is, feel free to
clarify.

See also my response to the thread entitled "cannot use char and
integer in the same program" on August 10th 2006 in this group.

Robert Gamble

Sep 8 '06 #3

Robert Gamble wrote:
main() wrote:
I know this is the problem that most newbies get into.

#include<stdio.h>
int main(void)
{
char a;
scanf("%c",&a); /*1st scanf */
printf("%c\n",a);
scanf("%c",&a); /*2nd scanf*/
printf("%c\n",a);
return 0;
}

This will not work, because after the first scanf a newline is left
behind in the input stream, unconsumed.

I made this attempt to solve this problem

#include<stdio.h>
int main(void)
{
char a,b;
scanf("%c",&a);
printf("%c\n",a);
getchar(); /* putting getc(stdin) also worked*/
scanf("%c",&a);
printf("%c\n",a);
return 0;
}

This will only work (the way you seem to want it to) if the second
character in the first input line is a newline. You introduced a new
variable here, b, did you mean to do something with it?
Out of curiosity I tried this also,

#include<stdio.h>
int main(void)
{
char a,b;
scanf("%c",&a);
printf("%c\n",a);
scanf("\n%c",&a);
printf("%c\n",a);
return 0;
}

which gave me expected output.

Any whitespace in the format string will match any amount of whitespace
in the input, including none. Your newline will match any number of
spaces, tabs, newlines, etc., until a non-whitespace character is
encountered.
But my question is (finally!) , why the following code doesn't work,

#include<stdio.h>
int main(void)
{
char a,b;
scanf("%c\n",&a); /* 1st scanf */
printf("%c\n",a);
scanf("%c",&a); /* 2nd scanf */
printf("%c\n",a);
return 0;
}

My assumption was 1st scanf will consume the newline left in the input
stream.

The first scanf call will store the first character into a and consume
of any immediately following whitespace (including newlines and any
whitespace that follows). You didn't specify what the input was that
you used or how the output differed from your expectations, so it's
difficult to help you understand what the "problem" is, feel free to
clarify.
Hi,

for the last code snippet
this is the output i got

y
z
y
z

when i entered y , it didn't print anything
when i entered z, it printed both y and z.
What i expected is this,

y
y
z
z

Thanks for your time,
Yugi.

Sep 8 '06 #4
To solve this problem i modified the code as follows:

#include<stdio.h>
main(void)
{
char a;
flushall();
//scanf("%c\n",&a); /* 1st scanf */
a=getchar();
printf("%c\n",a);
scanf("%c",&a); /* 2nd scanf */
printf("%c\n",a);
return 0;

}
but here i found more interesting part as, it does not stop for getting
input for 2nd scanf statement. Can someone , why??????????

Sep 8 '06 #5
"Shashank" <sm*******@gmail.comwrites:
To solve this problem i modified the code as follows:

#include<stdio.h>
main(void)
{
char a;
flushall();
//scanf("%c\n",&a); /* 1st scanf */
a=getchar();
printf("%c\n",a);
scanf("%c",&a); /* 2nd scanf */
printf("%c\n",a);
return 0;

}
What is flushall()? There is no such function in standard C. What is
it supposed to do?

--
Keith Thompson (The_Other_Keith) ks***@mib.org <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.
Sep 8 '06 #6
>
What is flushall()? There is no such function in standard C. What is
it supposed to do?
flushall(); flushes the buffer to aviod the entry of garbage values.

Sep 8 '06 #7
Shashank said:
>
>>
What is flushall()? There is no such function in standard C. What is
it supposed to do?

flushall(); flushes the buffer to aviod the entry of garbage values.
On your system, perhaps it does; but the C Standard does not guarantee this.
On some other system, it might do something else entirely.

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at above domain (but drop the www, obviously)
Sep 8 '06 #8
There is NO flushall() function.

There is one function fflush(), which flushes out the i/o stream data.

Richard Heathfield wrote:
Shashank said:
>
What is flushall()? There is no such function in standard C. What is
it supposed to do?
flushall(); flushes the buffer to aviod the entry of garbage values.

On your system, perhaps it does; but the C Standard does not guarantee this.
On some other system, it might do something else entirely.

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at above domain (but drop the www, obviously)
Sep 8 '06 #9
Ratan said:
There is NO flushall() function.
Correction: the C standard library does not provide one. Implementation
providers are free to provide a function by that name in a third-party
library if they choose, and at least one such provider does precisely that.
There is one function fflush(), which flushes out the i/o stream data.
Indeed - and fflush(NULL) flushes out /all/ data currently pending on
streams open for output or update. This is guaranteed by the Standard.

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at above domain (but drop the www, obviously)
Sep 8 '06 #10
Ratan wrote:
>
There is NO flushall() function.

There is one function fflush(), which flushes out the i/o stream data.
Please do not top-post. Your answer belongs after, or intermixed
with, the snipped data to which you reply. See the links below in
my sig.

fflush DOES NOT deal with input streams. In fact, attempting to
apply it to one results in undefined behaviour. A useful function
to have around is:

int flushln(FILE *f) {
int ch;

while ((EOF != (ch = getc(f))) && ('\n' != ch)) continue;
return ch;
} /* flushln */

which will flush an input stream through the next '\n'.

--
Some informative links:
news:news.announce.newusers
http://www.geocities.com/nnqweb/
http://www.catb.org/~esr/faqs/smart-questions.html
http://www.caliburn.nl/topposting.html
http://www.netmeister.org/news/learn2quote.html

Sep 8 '06 #11
Richard Heathfield wrote:
Ratan said:
>There is NO flushall() function.

Correction: the C standard library does not provide one. Implementation
providers are free to provide a function by that name in a third-party
library if they choose, and at least one such provider does precisely that.
>There is one function fflush(), which flushes out the i/o stream data.

Indeed - and fflush(NULL) flushes out /all/ data currently pending on
streams open for output or update. This is guaranteed by the Standard.
However, it does *not* flush input streams. Standard C has no support
for flushing input streams.

I know you know this Richard, but I suspect Ratan does not.
--
Flash Gordon
Sep 8 '06 #12
Flash Gordon said:
Richard Heathfield wrote:
>>
[...] fflush(NULL) flushes out /all/ data currently pending on
streams open for output or update. This is guaranteed by the Standard.

However, it does *not* flush input streams. Standard C has no support
for flushing input streams.
Right. That's why I said it flushes *out* all data currently pending on
streams open for *output* or *update*.
I know you know this Richard, but I suspect Ratan does not.
That's why I corrected him.

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at above domain (but drop the www, obviously)
Sep 8 '06 #13
CBFalconer <cb********@yahoo.comwrites:
Ratan wrote:
>>
There is NO flushall() function.

There is one function fflush(), which flushes out the i/o stream data.

Please do not top-post. Your answer belongs after, or intermixed
with, the snipped data to which you reply. See the links below in
my sig.

fflush DOES NOT deal with input streams. In fact, attempting to
apply it to one results in undefined behaviour. A useful function
to have around is:

int flushln(FILE *f) {
int ch;

while ((EOF != (ch = getc(f))) && ('\n' != ch)) continue;
return ch;
} /* flushln */

which will flush an input stream through the next '\n'.
Yes, that's one possible meaning of "flushing" an input stream.

At least one system I know of defines fflush() for input streams:

<SYSTEM_SPECIFIC>
Flushing an input stream discards any buffered input and adjusts
the file pointer such that the next input operation accesses the
byte after the last one read.
</SYSTEM_SPECIFIC>

This is perfectly legitimate; one of the infinitely many possible
consequences of undefined behavior is to behave in a manner defined by
the implementation.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <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.
Sep 8 '06 #14
On Thu, 07 Sep 2006 23:15:56 -0700, main() wrote:

Robert Gamble wrote:
>main() wrote:
I know this is the problem that most newbies get into.

#include<stdio.h>
int main(void)
{
char a;
scanf("%c",&a); /*1st scanf */
printf("%c\n",a);
scanf("%c",&a); /*2nd scanf*/
printf("%c\n",a);
return 0;
}

This will not work, because after the first scanf a newline is left
behind in the input stream, unconsumed.

I made this attempt to solve this problem

#include<stdio.h>
int main(void)
{
char a,b;
scanf("%c",&a);
printf("%c\n",a);
getchar(); /* putting getc(stdin) also worked*/ scanf("%c",&a);
printf("%c\n",a);
return 0;
}

This will only work (the way you seem to want it to) if the second
character in the first input line is a newline. You introduced a new
variable here, b, did you mean to do something with it?
Out of curiosity I tried this also,

#include<stdio.h>
int main(void)
{
char a,b;
scanf("%c",&a);
printf("%c\n",a);
scanf("\n%c",&a);
printf("%c\n",a);
return 0;
}

which gave me expected output.

Any whitespace in the format string will match any amount of whitespace
in the input, including none. Your newline will match any number of
spaces, tabs, newlines, etc., until a non-whitespace character is
encountered.
But my question is (finally!) , why the following code doesn't work,

#include<stdio.h>
int main(void)
{
char a,b;
scanf("%c\n",&a); /* 1st scanf */
printf("%c\n",a);
scanf("%c",&a); /* 2nd scanf */
printf("%c\n",a);
return 0;
}

My assumption was 1st scanf will consume the newline left in the
input
stream.

The first scanf call will store the first character into a and consume
of any immediately following whitespace (including newlines and any
whitespace that follows). You didn't specify what the input was that
you used or how the output differed from your expectations, so it's
difficult to help you understand what the "problem" is, feel free to
clarify.

Hi,

for the last code snippet
this is the output i got

y
z
y
z

when i entered y , it didn't print anything when i entered z, it
printed both y and z. What i expected is this,

y
y
z
z

Thanks for your time,
stdin is typically line-buffered, your input is seen by scanf one line at
a time. Scanf doesn't automatically return when it encounters an end of
line character, it returns when it finishes matching the format string or
when there is an input failure (end of file) or a matching failure
(something is encountered which doesn't match the format string). As
previously mentioned, any whitespace in the format string will match any
amount of whitespace in the input stream, your newline character will
match any amount of whitespace, the function will not return until it
encounters a non-whitespace character (or encounters end of file, etc.).
After reading the first character, 'y', the call to scanf is going to
continue reading from stdin, one character at a time, until it encounters
a non-whitespace character before returning. In the first line it assigns
the character 'y' to the variable a and then reads the newline which is a
whitespace character. Since scanf has not yet encountered a
non-whitespace character it is going to wait until the next line of input
is available and not return until it sees the 'z' on the second line. When
scanf encounters the 'z' it will see that it is not a whitespace
character, push it back onto the stream and return having finished
matching its format specifier. The second call to scanf will read the
character 'z' that the first call just pushed back and return immediately.

If you want to process input a line at a time your best bet is probably to
use fgets and sscanf.

Robert Gamble

Sep 9 '06 #15

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Intaek LIM | last post by:
Hello. I always used cin in C++ for standard input. But, with C, I must use scanf. Integers, chars are all fine with scanf. The problem is... I cannot read floating point value like 'double'...
39
by: Teh Charleh | last post by:
OK I have 2 similar programmes, why does the first one work and the second does not? Basically the problem is that the program seems to ignore the gets call if it comes after a scanf call. Please...
12
by: B Thomas | last post by:
Hi, I was reading O'Reilly's "Practical C programming" book and it warns against the use of scanf, suggesting to avoid using it completely . Instead it recomends to use using fgets and sscanf....
5
by: Eduardo Olivarez | last post by:
The following code does not work correctly on my machine. Either one of the scanf()'s alone work perfectly. However, when they are combined, the second scanf() call just reads what the first one...
33
by: Lalatendu Das | last post by:
Dear friends, I am getting a problem in the code while interacting with a nested Do-while loop It is skipping a scanf () function which it should not. I have written the whole code below. Please...
6
by: obdict | last post by:
Hello, I used scanf() in a while loop, which ensures that user input is valid (must be an integer no greater than 21 or less than 3). If user enters a number out of the range, or enters...
68
by: stasgold | last post by:
Hello. I maybe reinvent the weel ... I'm trying to read positive integer number with the help of scanf, if the input value is not positive number but negaive one zero or char , i have to reread...
5
by: Jack | last post by:
Hi, can someone tell me what is wrong with this code. cout << "Enter the size of the array:"; cin >size; myVar = new char; myVar = 'a'; printf ("%c\n",myVar); puts ("Enter value for the...
13
by: FerrisUML | last post by:
Hello everyone! I new to C and am having the following problem. In the below program, the last scanf is being ignored and the program exits. Can anyone see anything that im doing wrong? Thanks...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.