Obtaining user input can be done in many surprisingly different ways. This code is somewhere in the middle: safer than scanf("%d", &n)
, but not bulletproof. It is meant to be a simple but relatively safe demonstration.
The function mygeti
reads user input from the stdin into a string using fgets
. Then it attempts to convert this string to an integer using sscanf
. If both functions succeed, a 1 is returned; if either fails, a 0 is returned.
Leading whitespace, and other trailing characters are some things not handled. Those issues are handled in Read an Integer from the User, Part 2. Reading a Floating-Point Value from the User can be done similarly.