• The function atoi () in C

    The 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 C

    The 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 C

    The 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 C

    Function 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 C

    Function 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 C

    Calloc () 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 C

    Free () 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 C

    Malloc () function in C
    The malloc () function allocates the requested memory and returns a pointer to it.
  • Function realloc () in C

    Function 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 C

    The abort () function in C
    The abort () function stops executing the program abnormally.
  • The function atexit () in C

    The 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 C

    The 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 C

    Remove () 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 C

    Rename () 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 C

    The 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 C

    Function 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 C

    The 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 C

    Function 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 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,
  • Function fprintf () in C

    Function fprintf () in C
    The int fprintf function (FILE * stream, const char * format, ...) in standard C library sends formatted output to a Stream.