• The function atoi () in CThe function atoi () in C
    The int atoi function (const char * str) in standard C library converts a string pointed to by parameter str to an integer (int type).
  • The atol () function in CThe atol () function in C
    The function long int atol (const char * str) in the standard C library converts a string pointed to by parameter str to some long int.
  • The function strtod () in CThe function strtod () in C
    The double strtod function (const char * str, char ** endptr) in Standard C library converts a string pointed to by parameter str to a floating point number (type double).
  • Function strtol () in CFunction strtol () in C
    The function long int strtol (const char * str, char ** endptr, int base) in Standard C library converts part of the original string in str to a value of long int corresponding to
  • Function strtoul () in CFunction strtoul () in C
    The unsigned function long int strtoul (const char * str, char ** endptr, int base) in Standard C library converts part of the original string in str to a value of long int
  • Calloc () function in CCalloc () function in C
    The function void * calloc (so-phan-tu, kich-co-phan-tu) allocates the requested memory and returns a pointer to it. The difference between malloc and calloc is: malloc does not
  • Free () function in CFree () function in C
    The void free function (void * ptr) frees the previously allocated memory by a call to calloc, malloc, or realloc
  • Malloc () function in CMalloc () function in C
    The malloc () function allocates the requested memory and returns a pointer to it.
  • Function realloc () in CFunction realloc () in C
    The realloc () function attempts to recover the memory block pointed to by the ptr pointer that was previously allocated with a call to malloc or calloc.
  • The abort () function in CThe abort () function in C
    The abort () function stops executing the program abnormally.
  • The function atexit () in CThe function atexit () in C
    Int atexit function (void (* func) (void)) calls function func when the program ends. You can register your end function (func function) wherever you like, but this function will
  • The exit () function in CThe exit () function in C
    The void exit (int status) function immediately terminates the calling process. Any file opened by the process is closed and any child process is inherited by the initial process
  • Remove () function in CRemove () function in C
    The int remove (const char * filename) function in Library C standard deletes the filename so it is no longer accessible.
  • Rename () function in CRename () function in C
    The function int rename (const char * old_filename, const char * new_filename) in Library C standard makes filename referenced, changed from old_filename to new_filename.
  • The rewind () function in CThe rewind () function in C
    The void rewind function (FILE * stream) in Standard C library sets the file location to the beginning of the file in the given stream.
  • Function setbuf () in CFunction setbuf () in C
    The function void setbuf (FILE * stream, char * buffer) in the standard C Library defines how a Stream is buffered. This function should be called once the file attached to the
  • The function setvbuf () in CThe function setvbuf () in C
    The function int setvbuf (FILE * stream, char * buffer, int mode, size_t size) in Standard C Library determines how a Stream should be buffered.
  • Function tmpfile () in CFunction tmpfile () in C
    Function FILE * tmpfile (void) in standard C Library Create temporary files in wb + mode. The temporary file created will be automatically deleted when the stream is closed
  • Function tmpnam () in CFunction 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,
  • Function fprintf () in CFunction fprintf () in C
    The int fprintf function (FILE * stream, const char * format, ...) in standard C library sends formatted output to a Stream.