Here's my problem : entering a whole number by a user through the beta function scanf and I'd like to check if the user enters a number on the interval of values that an integer can hold. Basically, if it does not exceed the limits.
Code:# include <stdio.h> int main (void) ( int count = 0; scanf ( "% i", & number); return 0; )
Bookmarks