the function char * tmpnam (char * str) in the c library standard creates and returns a valid temporary file name (temp file) that did not exist before creation. if str is null,
the int fprintf function (file * stream, const char * format, ...) in standard c library sends formatted output to a stream.
the int sprintf function (char * str, const char * format, ...) in the standard c library sends the formatted output to a string str.
the int vfprintf function (file * stream, const char * format, va_list arg) in the standard c library sends the formatted output to a stream using a parameter list.
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 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.
char * fgets (char * str, int n, file * stream) in standard c library reads a line from the given stream and stores it in the string pointed by str. it stops when any of the
the function int fputc (int char, file * stream) in library c writes one character (an unsigned char) defined by the char parameter to the given stream and increases the position
the function int getc (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.
int fclose function (file * stream) in library c closes stream. all buffers are flushed (erased or moved to the periphery).
void function clearerr (file * stream) in library c deletes end-of-file and error indicator for the given stream.
the int ferror function (file * stream) in library c checks the error indicator for the given stream.
the int fflush function (file * stream) in library c flushes the output buffer of a stream.
the int fgetpos function (file * stream, fpos_t * pos) in the c library standardizes the position of the current file of stream and writes it to pos.
the function file * fopen (const char * filename, const char * mode) in library c opens the file pointed to the filename parameter by using the given mode.
function size_t fread (void * ptr, size_t size, size_t nmemb, file * stream) in standard c library reads data from the given stream into the pointed array, by ptr.
the function int fseek (file * stream, long int offset, int whence) in standard c library sets the stream file location to the given offset. the offset parameter specifies the
the function int fsetpos (file * stream, const fpos_t * pos) in library c sets the file location of the stream to the given location. the pos parameter is a location provided by
the function long int ftell (file * stream) in standard c library returns the current file location of the given stream.
function size_t fwrite (const void * ptr, size_t size, size_t nmemb, file * stream) in standard c library writes data from the array pointed by ptr to the given stream.