up vote 2 down vote favorite
share [g+] share [fb]

I want to read a int from stdin but I want to validate if the user exceeds the int max value. How can I do it?

int n; scanf("%d", &n);

scanf reads the decimal input and stores in the int, causing overflow. How can I check and avoid this?

link|improve this question
feedback

3 Answers

The only way to convert a string representation of a number to the actual value and to watch for overflow is to use functions from strto.. group. In your case you need to read in a string representation of the number and then convert it using strtol function.

Beware of responses that suggest using atoi or sscanf to perform the final conversion. None of these functions protect from overflow.

link|improve this answer
Can you show a complete example on how to convert to a long and check the "overflow" error? – AlfaTeK Dec 2 '09 at 22:16
There's not much to show. In case of overflow strtol sets errno to ERANGE. Just check the value of errno to catch overflow. – AndreyT Dec 2 '09 at 22:56
And that is Ansi C compatible (C89)? – AlfaTeK Dec 3 '09 at 1:05
Yes, this is now strtol (and the rest of strto... functions) is described in C89/90. – AndreyT Dec 3 '09 at 1:49
feedback

Read it into a string and check the length, then call either atol() or sscanf() on the string to convert it into a int.

link|improve this answer
Not atoi and not sscanf. Neither of these protect from overflow. "Checking the length" cannot be used to prevent overflow for obvious reasons. – AndreyT Nov 7 '09 at 20:42
you can assume though that if the entered number is 10 digits long it isn't gong to fit into an int. – Martin Beckett Nov 8 '09 at 1:56
2000000000 is 10 digits long and it fits into a 32-bit int without a problem. – AndreyT Nov 8 '09 at 2:13
feedback

Another way is to set max digits to parse.

For example:

  int n;
  scanf("%5d", &n); // read at most 5 digits
  printf("%i\n", n);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.