Formatted Input/Output Functions

Top  Previous  Next

fprintf

performs formatted output to a specified file


fscanf

performs formatted input from a file


printf

performs a formatted write to standard output


scanf

performs a formatted read from standard input


sprintf 

performs formatted output to a character string in memory


sscanf

performs formatted input from memory


vfprintf

similar to fprintf, but with a single argument instead of a list of arguments


vprintf

similar to printf, but with a single argument instead of a list of arguments


vsprintf

similar to sprintf, but with a single argument instead of a list of arguments