TipsMake
Newest

Tags : value of c

Calloc () function in C
Programming C 25 May 2019

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

Read More
Free () function in C
Programming C 25 May 2019

Free () function in C

the void free function (void * ptr) frees the previously allocated memory by a call to calloc, malloc, or realloc

Read More
Function realloc () in C
Programming C 25 May 2019

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.

Read More
The exit () function in C
Programming C 25 May 2019

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

Read More