You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 14 Next »

Formatted input functions such as scanf(), fscanf(), vscanf(), and vfscanf() can be used to read string data from stdin or (in the cases of fscanf() and vfscanf()) other input stream. These functions work fine for valid integer values but lack robust error handling for invalid values.

Instead of these functions, try inputing the value as a string and then converting it to an integer value using strtol() or a related function INT00-A.

Unable to render {include} The included page could not be found.
Unable to render {include} The included page could not be found.

References

  • Klein 02
  • ISO/IEC 9899-1999 Section 7.20.1.4 The strtol, strtoll, strtoul, and strtoull functions; Section 7.19.6 Formatted input/output functions
  • No labels