vote up 2 vote down star

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?

flag

3 Answers

vote up 4 vote down

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|flag
vote up 0 vote down

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|flag
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 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. – mgb Nov 8 at 1:56
2000000000 is 10 digits long and it fits into a 32-bit int without a problem. – AndreyT Nov 8 at 2:13
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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