It will help in examining executable files to know about some standard C library functions.
A quick reference is on the Documents page of the class web site.
Four input functions in the C library:
- int scanf( const char *format, ... );
- int sscanf( const char *buffer, const char *format, ... );
- char *gets( char *str );
- char *fgets( char *str, int num, FILE *stream );