LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
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


Reply
  Search this Thread
Old 07-24-2004, 12:27 AM   #16
jlliagre
Moderator
 
Registered: Feb 2004
Location: Outside Paris
Distribution: Solaris 11.4, Oracle Linux, Mint, Debian/WSL
Posts: 9,789

Rep: Reputation: 492Reputation: 492Reputation: 492Reputation: 492Reputation: 492

OK, sorry, but as the input is discarded anyway, one getchar is simpler than gets, and is enough for the job.
 
Old 07-24-2004, 02:13 AM   #17
itsme86
Senior Member
 
Registered: Jan 2004
Location: Oregon, USA
Distribution: Slackware
Posts: 1,246

Rep: Reputation: 59
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.
 
Old 07-24-2004, 03:26 AM   #18
jlliagre
Moderator
 
Registered: Feb 2004
Location: Outside Paris
Distribution: Solaris 11.4, Oracle Linux, Mint, Debian/WSL
Posts: 9,789

Rep: Reputation: 492Reputation: 492Reputation: 492Reputation: 492Reputation: 492
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.
 
  


Reply



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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
small syntax problem with C code (implemented in Code Composer Studio) illiniguy3043 Programming 6 01-07-2008 02:14 AM
User Preferences: Use HTML code instead of vB code? (vB code is overrated) stefanlasiewski LQ Suggestions & Feedback 5 07-26-2005 01:37 AM
Using [code] inside of [color] results in very small text scuzzman LQ Suggestions & Feedback 1 03-28-2005 02:14 AM
Same code, two different results. (C++) Travis86 Programming 7 11-07-2004 04:36 PM
Editing buttons (quote, code etc.) add the code to the end vharishankar LQ Suggestions & Feedback 2 09-13-2004 09:32 AM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 07:30 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration