TipsMake
Newest

Tags : things to know about programming c

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

The strspn () function in C

function size_t strspn (const char * str1, const char * str2) calculates the length of the first character segment of the str1 string containing the characters in str2

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

The strtok () function in C

char * strtok function (char * str, const char * delim) divides the string str into a sequence of tokens separately separated by delim separators (eg comma, ...).

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

Function strxfrm () in C

the function size_t strxfrm (char * dest, const char * src, size_t n) transforms the first n characters of the src string into the current locale and places them in dest string.

Read More