Scanf vs fgets

Reply

Join Date: Jul 2007
Posts: 14
Reputation: #include_rose is an unknown quantity at this point 
Solved Threads: 0
#include_rose #include_rose is offline Offline
Newbie Poster

Scanf vs fgets

 
0
  #1
Oct 17th, 2007
I'm having some trouble understanding the advantages and disadvantages of using scanf over fgets.

When we have allocated memory using an array for eg, it is not wise to use scanf since buffer overflow can occur. But in what way does fgets prevent that from happening?

Also, if you are allocating memory dynamically then is it okay to be using scanf?

I have this code:
  1. typedef struct node
  2. {
  3. int data;
  4. struct node *next;
  5. }NODE;
  6. static NODE *find(NODE *element);
  7.  
  8. void main()
  9. {
  10. NODE *element,*head,*a;
  11. element = (NODE *) malloc (sizeof(NODE));
  12. element->next=head;
  13. printf("Enter the data\n");
  14. scanf("%d",&element->data);
  15. head=element;
  16. a =find(element);
  17. if(a)
  18. {
  19. printf("Element %d was found \n",element->data);
  20. }
  21. else
  22. {
  23. printf("Element %d was not found\n",element->data);
  24.  
  25. }
  26. free(head);
  27. }
  28.  
  29. NODE * find(NODE *element)
  30. {
  31. while(element)
  32. {
  33. if(element->data==50)
  34. {
  35. return element;
  36. }
  37. else
  38. {
  39. return 0;
  40. }
  41. element=element->next;
  42. }
  43.  
  44. }
If I were to use fgets instead of scanf here, how would I incorporate it?

Thanks.
Reply With Quote Quick reply to this message  
Join Date: Sep 2004
Posts: 7,630
Reputation: Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute 
Solved Threads: 718
Team Colleague
Narue's Avatar
Narue Narue is offline Offline
Code Goddess

Re: Scanf vs fgets

 
0
  #2
Oct 17th, 2007
>I'm having some trouble understanding the advantages
>and disadvantages of using scanf over fgets.
I imagine because the comparison is difficult. scanf and fgets do different things. scanf is designed for formatted input and fgets is designed for unformatted input.

>But in what way does fgets prevent that from happening?
Assuming you use it correctly, the second argument of fgets provides a limit on the number of characters that are read:
  1. char buffer[10];
  2.  
  3. if ( fgets ( buffer, 10, stdin ) != NULL )
  4. fputs ( buffer, stdin );
It doesn't matter how many characters you actually type, only up to 9 will be written to buffer, and the last spot will be '\0'. The same can't be said about a naive use of scanf:
  1. char buffer[10];
  2.  
  3. if ( scanf ( "%s", buffer ) == 1 )
  4. puts ( buffer );
You can type 5000 characters, and as long as there's no whitespace scanf will read 5000 characters. The big question is, where does it write them all if buffer can only hold 10?

That's a naive use of scanf, and if you find yourself doing that, you shouldn't be using scanf at all, because you simply don't understand it well enough to use it safely. You can plug the buffer overflow hole with scanf like this:
  1. char buffer[10];
  2.  
  3. if ( scanf ( "%9s", buffer ) == 1 )
  4. puts ( buffer );
By adding a maximum field width, you're telling scanf to read up to that many characters, and no more. So if you type 5000 character, scanf will only read the first 9, and tack a '\0' onto the last spot.

>Also, if you are allocating memory dynamically then is it okay to be using scanf?
How you get the buffer is irrelevant.

>If I were to use fgets instead of scanf here, how would I incorporate it?
The problem is that scanf reads formatted input and fgets only reads strings. scanf will take "12345\n" and with the %d specifier, convert it into the integer 12345. fgets will just give you "12345\n". To get the integer value with fgets, you need another conversion step. Ironically, sscanf is a good choice for that. So this:
  1. scanf("%d",&element->data);
becomes this:
  1. {
  2. char line[BUFSIZ];
  3.  
  4. if ( fgets ( line, sizeof line, stdin ) == NULL
  5. || sscanf ( line, "%d", &element->data ) != 1 )
  6. {
  7. /* Handle bad input */
  8. }
  9. }
Other methods include the horrible atoi function, the much better strtol, and your own conversion routine. Using scanf for reading anything but string data is actually not that bad. You may have some minor issues handling failure, but most of the conversion specifiers aren't glaringly unsafe like %s.
Last edited by Narue; Oct 17th, 2007 at 5:14 pm.
I'm here to prove you wrong.
Reply With Quote Quick reply to this message  
Join Date: Jul 2007
Posts: 14
Reputation: #include_rose is an unknown quantity at this point 
Solved Threads: 0
#include_rose #include_rose is offline Offline
Newbie Poster

Re: Scanf vs fgets

 
0
  #3
Oct 17th, 2007
Thanks a lot. That cleared my doubts. :-)
Reply With Quote Quick reply to this message  
Join Date: Jul 2007
Posts: 14
Reputation: #include_rose is an unknown quantity at this point 
Solved Threads: 0
#include_rose #include_rose is offline Offline
Newbie Poster

Re: Scanf vs fgets

 
0
  #4
Oct 17th, 2007
Ironically, sscanf is a good choice for that. So this:
  1. scanf("%d",&element->data);
becomes this:
  1. {
  2. char line[BUFSIZ];
  3.  
  4. if ( fgets ( line, sizeof line, stdin ) == NULL
  5. || sscanf ( line, "%d", &element->data ) != 1 )
  6. {
  7. /* Handle bad input */
  8. }
  9. }
I didn't understand this though. How would I use fgets when I want to allocate memory dynamically? Here you are allocating static memory using line[BUFSIZ]; Am i right?
Last edited by #include_rose; Oct 17th, 2007 at 10:52 pm.
Reply With Quote Quick reply to this message  
Join Date: Dec 2006
Posts: 2,031
Reputation: Aia has much to be proud of Aia has much to be proud of Aia has much to be proud of Aia has much to be proud of Aia has much to be proud of Aia has much to be proud of Aia has much to be proud of Aia has much to be proud of Aia has much to be proud of Aia has much to be proud of 
Solved Threads: 177
Aia's Avatar
Aia Aia is offline Offline
Postaholic

Re: Scanf vs fgets

 
0
  #5
Oct 17th, 2007
Originally Posted by #include_rose View Post
I didn't understand this though. How would I use fgets when I want to allocate memory dynamically? Here you are allocating static memory using line[BUFSIZ]; Am i right?
When you used
  1. scanf("%d",&element->data);
element->data is the pointer of what is in dynamic memory.

When you use fgets is the same element->data that is in the heap.
line[BUFSIZ] is a local array to temporarily hold the string needed
by sscanf to convert it into an integer.
That line[BUFSIZ] doesn't need to be in dynamic memory.
Last edited by Aia; Oct 17th, 2007 at 11:27 pm.
Reply With Quote Quick reply to this message  
Join Date: Sep 2004
Posts: 7,630
Reputation: Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute 
Solved Threads: 718
Team Colleague
Narue's Avatar
Narue Narue is offline Offline
Code Goddess

Re: Scanf vs fgets

 
0
  #6
Oct 18th, 2007
>How would I use fgets when I want to allocate memory dynamically?
Exactly the same way. Did you miss the part where I said that how you get the buffer is irrelevant? If it really bothers you, is this better? It uses memory dynamically.
  1. {
  2. char *line = malloc ( BUFSIZ );
  3.  
  4. if ( line != NULL ) {
  5. if ( fgets ( line, BUFSIZ, stdin ) == NULL
  6. || sscanf ( line, "%d", &element->data ) != 1 )
  7. {
  8. /* Handle bad input */
  9. }
  10. }
  11.  
  12. free ( line );
  13. }
I'm here to prove you wrong.
Reply With Quote Quick reply to this message  
Join Date: Jul 2007
Posts: 14
Reputation: #include_rose is an unknown quantity at this point 
Solved Threads: 0
#include_rose #include_rose is offline Offline
Newbie Poster

Re: Scanf vs fgets

 
0
  #7
Oct 18th, 2007
For some reason now it feels better
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC