Search results: commands in library c
the function int vsprintf (char * str, const char * format, va_list arg) in the standard c library sends the formatted output to a string string using a parameter list.
the int fscanf function (file * stream, const char * format, ...) in library c reads the input formatted from a stream.
the function int scanf (const char * format, ...) in library c standard reads input that has been formatted from stdin.
the function int sscanf (const char * str, const char * format, ...) in library c standard reads the input formatted from a string.
the function int fgetc (file * stream) in c library standard takes the next character (an unsigned char) from the given stream and increases the position indicator for that stream.