run program c
-
Function tmpnam () in C
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, it returns the tmp file name.
-
Function fprintf () in C
the int fprintf function (file * stream, const char * format, ...) in standard c library sends formatted output to a stream.
-
The sprintf () function in C
the int sprintf function (char * str, const char * format, ...) in the standard c library sends the formatted output to a string str.
-
Function vfprintf () in C
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 vsprintf () in 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.
-
Function fgetc () in C
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.
-
Function fgets () in C
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 following conditions are encountered: (n-1) the character has been read, the newline character (new line) is read or
-
Function fputc () in C
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 indicator for the stream.
-
The function getc () in C
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.
-
The function fclose () in C
int fclose function (file * stream) in library c closes stream. all buffers are flushed (erased or moved to the periphery).
-
The function clearerr () in C
void function clearerr (file * stream) in library c deletes end-of-file and error indicator for the given stream.
-
The ferror () function in C
the int ferror function (file * stream) in library c checks the error indicator for the given stream.