TipsMake
Newest

Tags : the parameter in c

The function mbstowcs () in C
Programming C 25 May 2019

The function mbstowcs () in C

function size_t mbstowcs (* pwcs, const char * str, n) converts the sequence of multi-byte char points pointed to by the parameter str to the array pointed to by pwcs.

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

The function memcmp () in C

the function int memcmp (const void * str1, const void * str2, size_t n)) compares the first n bytes of two strings str1 and str2.

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

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.

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

The function fread () in C

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.

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

Function freopen () in C

function file * freopen (const char * filename, const char * mode, file * stream) in library c attaches a new filename with the given stream and at the same time closes the old

Read More