Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
|
07-24-2004, 12:27 AM
|
#16
|
Moderator
Registered: Feb 2004
Location: Outside Paris
Distribution: Solaris 11.4, Oracle Linux, Mint, Debian/WSL
Posts: 9,795
|
OK, sorry, but as the input is discarded anyway, one getchar is simpler than gets, and is enough for the job.
|
|
|
07-24-2004, 02:13 AM
|
#17
|
Senior Member
Registered: Jan 2004
Location: Oregon, USA
Distribution: Slackware
Posts: 1,246
Rep:
|
Quote:
OK, sorry, but as the input is discarded anyway, one getchar is simpler than gets, and is enough for the job.
|
No, I'm sorry but there isn't always just one character left on the buffer. Here's proof:
Code:
#include <stdio.h>
int main(void)
{
int num;
char buf[20];
printf("Number: ");
scanf("%d", &num);
fgets(buf, sizeof(buf), stdin);
printf("%d:%s:\n", num, buf);
return 0;
}
And when I run it:
Quote:
itsme@itsme:~/C$ ./scanftest
Number: 15abc
15:abc
:
itsme@itsme:~/C$
|
If you only used one getchar() it would pull the 'a' off the buffer but leave 'bc\n'.
You can't trust the user to type only what you're expecting them to type, so I stand behind my argument that using fgets() with a large enough buffer or a loop that calls getchar() until \n is reached is the best tool for the job and that a single getchar() is sadly insufficient. This is why I suggested just using fgets() in the first place and forgetting all about scanf() since you have to worry about pulling everything off the buffer afterward anyways. scanf() should only be used for trusted input.
Last edited by itsme86; 07-24-2004 at 02:35 AM.
|
|
|
07-24-2004, 03:26 AM
|
#18
|
Moderator
Registered: Feb 2004
Location: Outside Paris
Distribution: Solaris 11.4, Oracle Linux, Mint, Debian/WSL
Posts: 9,795
|
itsme86, it seems you didn't read my replies.
I understand your point, which is valid in most case, but I persist thinking one getchar is enough to handle the "press any key" prompt in this particular example, as the buffer is discarded anyway after the main function is exited.
For the rest of your posting, you are just suggesting to do what I already did and explained. I see no contradiction here.
|
|
|
All times are GMT -5. The time now is 02:11 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|