>1. sample inputs(_input_- a `line` from input stream) and return values of `get_int()`(`sizeof(int)` = 4).
.
>2. Trailing white spaces are discarded. Input buffer is _empty_ as soon as the function returns./* sample inputs and outputs of `get_int()` (note. sizeof(int) = 4) */ "2147483647\n" -- true (INT_MAX) "2147483648\n" -- false "-2147483648\n" -- true (INT_MIN) "-2147483649\n" -- false "25ds\n" -- false "asdjkljasdf\n" -- false "25 256\n" -- false "+1\n" -- true "-1\n" -- true EOF -- false " 1\n" -- true